/* ══════════════════════════════════════════
   PÁGINA B2B "PARA NEGOCIOS" - PREMIUM CSS
═══════════════════════════════════════════ */

.b2b-landing {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  color: #0F172A;
  background: #FAFAFA;
}

.b2b-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent {
  color: #3B82F6; /* Eypet blue */
}

/* ─── HERO SECTION ─── */
.b2b-hero {
  position: relative;
  padding: 80px 0 100px;
  background: #061A3A;
  color: #FFFFFF;
  overflow: hidden;
}

.b2b-hero__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.b2b-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 64px;
}

.b2b-hero__content {
  flex: 1;
}

.b2b-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.b2b-hero__badge-icon { font-size: 16px; }

.text-gradient {
  background: linear-gradient(135deg, #60A5FA, #34D399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.b2b-hero__title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.b2b-hero__subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #CBD5E1; /* Lighter slate color for better contrast against dark blue */
  margin-bottom: 40px;
  max-width: 540px;
}

.b2b-hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}

.b2b-hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #94A3B8;
  font-weight: 500;
}
.b2b-avatars {
  display: flex;
  align-items: center;
}
.b2b-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #061A3A;
  margin-left: -10px;
}
.b2b-avatars img:first-child { margin-left: 0; }
.b2b-avatars__more {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #3B82F6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  border: 2px solid #061A3A;
  margin-left: -10px;
  z-index: 10;
}

/* Visual Right Side */
.b2b-hero__visual {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.b2b-hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.b2b-hero__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

.b2b-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0F172A;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.5);
}

.b2b-floating-card--1 {
  bottom: 40px;
  left: -30px;
  animation: float 6s ease-in-out infinite;
}

.b2b-floating-card--2 {
  top: 60px;
  right: -30px;
  animation: float 8s ease-in-out infinite reverse;
}

.b2b-floating-card__icon {
  width: 40px;
  height: 40px;
  background: #FEF08A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.b2b-floating-card__text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}
.b2b-floating-card__text span {
  font-size: 12px;
  color: #64748B;
  font-weight: 500;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.b2b-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}

.b2b-btn--primary {
  background: #3B82F6;
  color: #FFFFFF;
  border: none;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.b2b-btn--primary:hover {
  background: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
}

.b2b-btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.b2b-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ─── BENEFICIOS (Features) ─── */
.b2b-benefits {
  padding: 100px 0;
  background: #FFFFFF;
  color: #0F172A;
  position: relative;
  overflow: hidden;
}

.b2b-benefits::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.b2b-benefits__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}
.b2b-benefits__header .b2b-section-title {
  margin-bottom: 16px;
  font-size: 40px;
  color: #0F172A;
}
.b2b-section-subtitle {
  font-size: 18px;
  color: #64748B;
  line-height: 1.6;
}

.b2b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.b2b-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.b2b-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #3B82F6, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.b2b-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.2);
}

.b2b-card:hover::before {
  opacity: 1;
}

.b2b-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  background: rgba(59, 130, 246, 0.1);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.b2b-card__icon svg {
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.b2b-card__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0F172A;
  letter-spacing: -0.01em;
}

.b2b-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: #64748B;
}

/* ─── PROCESO ─── */
.b2b-process {
  padding: 120px 0;
  background-color: #061A3A;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.b2b-bg-slider {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
}

.b2b-bg-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.b2b-bg-slide.active {
  opacity: 1;
}

.b2b-bg-slide img {
  width: 100%; height: 100%; object-fit: cover;
}

.b2b-process__overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(6, 26, 58, 0.8), rgba(6, 26, 58, 0.95));
  z-index: 1;
}

.b2b-process .b2b-section-title {
  margin-bottom: 80px;
  color: #FFFFFF;
}

.b2b-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.b2b-step {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px 32px 32px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: transform 0.3s ease;
  margin-top: 28px;
}

.b2b-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.b2b-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #3B82F6;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #FFFFFF;
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.b2b-step__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0F172A;
  letter-spacing: -0.01em;
}

.b2b-step__text {
  font-size: 15px;
  line-height: 1.6;
  color: #64748B;
}

.b2b-step__line {
  display: none;
}

/* ─── CTA SECTION (FORMULARIO) ─── */
.b2b-cta-section {
  padding: 100px 0;
  background: #FFFFFF;
}

.b2b-cta-box {
  display: flex;
  background: #FFFFFF;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.08);
  border: 1px solid #E2E8F0;
}

.b2b-cta-box__info {
  flex: 1;
  padding: 64px;
  color: #FFFFFF;
  background: #061A3A;
}

.b2b-cta-box__info h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.b2b-cta-box__info p {
  font-size: 18px;
  line-height: 1.6;
  color: #CBD5E1;
  margin-bottom: 32px;
}

.b2b-cta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #FFFFFF;
}

.b2b-cta-list li {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.b2b-cta-box__form-wrap {
  flex: 1;
  background: #FFFFFF;
  padding: 64px;
  color: #0F172A;
}

.b2b-form__header {
  margin-bottom: 32px;
}

.b2b-form__title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  color: #0F172A;
}
.b2b-form__subtitle {
  font-size: 15px;
  color: #64748B;
}

.b2b-form__section {
  background: transparent;
  padding: 0;
  margin-bottom: 32px;
  border: none;
}

.b2b-form__section-title {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.req { color: #E11D48; }

.b2b-form__group {
  margin-bottom: 16px;
}

.b2b-form__group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 8px;
}

.b2b-form__group input,
.b2b-form__group select,
.b2b-form__group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #F8FAFC;
  color: #0F172A;
  box-shadow: none;
}

.b2b-form__group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.b2b-form__group input:hover,
.b2b-form__group select:hover,
.b2b-form__group textarea:hover {
  border-color: #CBD5E1;
}

.b2b-form__group input::placeholder,
.b2b-form__group textarea::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

.b2b-form__group textarea {
  resize: vertical;
}

.b2b-form__group input:focus,
.b2b-form__group select:focus,
.b2b-form__group textarea:focus {
  outline: none;
  border-color: #3B82F6;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.b2b-form__row {
  display: flex;
  gap: 16px;
}
.b2b-form__row .b2b-form__group {
  flex: 1;
}

.mt-3 { margin-top: 20px; }

/* Custom Checkboxes as Cards */
.b2b-form__checkboxes {
  display: flex;
  gap: 12px;
}

.b2b-checkbox-card {
  flex: 1;
  cursor: pointer;
  position: relative;
}

.b2b-checkbox-card input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.b2b-checkbox-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  transition: all 0.2s;
}

.b2b-checkbox-card__icon {
  font-size: 24px;
}

.b2b-checkbox-card__label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  text-align: center;
}

.b2b-checkbox-card input:checked ~ .b2b-checkbox-card__inner {
  border-color: #3B82F6;
  background: #EFF6FF;
}

.b2b-checkbox-card input:checked ~ .b2b-checkbox-card__inner .b2b-checkbox-card__label {
  color: #1E3A8A;
}

.b2b-btn--submit {
  width: 100%;
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  color: #FFFFFF;
  border: none;
  padding: 18px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.b2b-btn--submit:hover {
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.3);
}

.b2b-btn--outline {
  width: 100%;
  background: transparent;
  color: #475569;
  border: 2px solid #CBD5E1;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.b2b-btn--outline:hover {
  background: #F8FAFC;
  color: #0F172A;
  border-color: #94A3B8;
  transform: translateY(-2px);
}

.b2b-form__disclaimer {
  font-size: 12px;
  color: #94A3B8;
  text-align: center;
  margin: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
  .b2b-hero__inner { flex-direction: column; text-align: center; gap: 40px; }
  .b2b-hero__content { max-width: 600px; margin: 0 auto; }
  .b2b-hero__subtitle { margin-left: auto; margin-right: auto; }
  .b2b-hero__actions { justify-content: center; }
  .b2b-hero__trust { justify-content: center; }
  .b2b-hero__visual { justify-content: center; margin-top: 20px; }
  .b2b-floating-card--1 { left: -10px; }
  .b2b-floating-card--2 { right: -10px; }
  
  .b2b-hero__title { font-size: 40px; }
  .b2b-grid { grid-template-columns: repeat(2, 1fr); }
  .b2b-steps { grid-template-columns: 1fr; gap: 48px; }
  .b2b-step__line { display: none; }
  .b2b-cta-box { flex-direction: column; }
  .b2b-cta-box__info, .b2b-cta-box__form-wrap { padding: 40px; }
}

@media (max-width: 768px) {
  .b2b-grid { grid-template-columns: 1fr; }
  .b2b-floating-card { transform: scale(0.85); }
}

@media (max-width: 576px) {
  .b2b-hero { padding: 100px 20px 60px; }
  .b2b-hero__title { font-size: 32px; }
  .b2b-hero__subtitle { font-size: 16px; }
  .b2b-hero__actions { flex-direction: column; }
  .b2b-btn { width: 100%; justify-content: center; }
  .b2b-form__row { flex-direction: column; gap: 0; }
  .b2b-cta-box__info, .b2b-cta-box__form-wrap { padding: 32px 20px; }
  .b2b-cta-box__info h2 { font-size: 28px; }
  
  .b2b-hero__img {
    height: 350px;
  }
}
