/* ==========================================================================
   MONICA LLACH Y CIA LTDA. — HOJA DE ESTILOS DE EMPRESAS (empresas.css)
   Diseño editorial prémium, responsivo y adaptado al PDF corporativo
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Navegación Secundaria (Breadcrumb)
   -------------------------------------------------------------------------- */
.subpage-breadcrumb-bar {
  background: var(--bg-primary, #FAF5EE);
  border-bottom: 1px solid var(--border-light, #E8DECF);
  padding: 0.85rem 0;
  font-size: 0.88rem;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted, #6B7280);
}

.breadcrumb-list a {
  color: var(--text-muted, #6B7280);
  text-decoration: none;
  transition: color var(--transition-fast, 0.2s ease);
}

.breadcrumb-list a:hover {
  color: var(--gold-primary, #C9994F);
}

.breadcrumb-separator {
  color: var(--border-light, #C4B9A9);
  font-size: 0.75rem;
}

.breadcrumb-current {
  color: var(--text-dark, #1A1F26);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   2. Hero Section: "Protección integral para tu empresa."
   -------------------------------------------------------------------------- */
.empresas-hero-section {
  background: var(--bg-primary, #FAF5EE);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.empresas-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.empresas-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.empresas-hero-title {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: clamp(2.3rem, 4.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark, #1A1F26);
  margin-bottom: 1.35rem;
  letter-spacing: -0.02em;
}

.empresas-hero-desc {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  color: var(--text-body, #3E4551);
  margin-bottom: 2rem;
  max-width: 580px;
}

.empresas-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
}

.btn-hero-gold {
  background: var(--gold-gradient, linear-gradient(135deg, #D6A85D 0%, #C49448 50%, #B07F33 100%));
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  padding: 0.95rem 1.85rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 18px rgba(196, 148, 72, 0.28);
  border: none;
  cursor: pointer;
}

.btn-hero-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(196, 148, 72, 0.4);
  filter: brightness(1.04);
}

.btn-hero-outline {
  background: transparent;
  color: var(--text-dark, #1A1F26);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.85rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(26, 31, 38, 0.7);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-hero-outline:hover {
  background: rgba(26, 31, 38, 0.06);
  border-color: var(--text-dark, #1A1F26);
  transform: translateY(-2px);
}

/* Media Hero */
.empresas-hero-media {
  position: relative;
  width: 100%;
}

.empresas-hero-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(5, 33, 73, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.8);
  aspect-ratio: 4 / 3;
  background: #E8DECF;
}

.empresas-hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.empresas-hero-frame:hover img {
  transform: scale(1.025);
}

/* --------------------------------------------------------------------------
   3. Tres Pilares Horizontales (Bajo el Hero)
   -------------------------------------------------------------------------- */
.empresas-pillars-bar {
  background: var(--bg-surface, #FFFFFF);
  border: 1px solid var(--border-light, #E8DECF);
  border-radius: 14px;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 8px 24px rgba(10, 25, 47, 0.04);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.pillar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  color: var(--text-dark, #1A1F26);
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 600;
  text-align: left;
}

.pillar-item:not(:last-child) {
  border-right: 1px solid var(--border-light, #E8DECF);
  padding-right: 1.5rem;
}

.pillar-icon-svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-primary, #C9994F);
  stroke-width: 1.6;
  fill: none;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   4. Sección: "¿Qué necesita proteger tu empresa?"
   -------------------------------------------------------------------------- */
.empresa-categories-section {
  background: var(--bg-primary, #FAF5EE);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  border-top: 1px solid var(--border-light, #E8DECF);
  border-bottom: 1px solid var(--border-light, #E8DECF);
}

.section-editorial-heading {
  text-align: center;
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--text-dark, #1A1F26);
  margin-bottom: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.01em;
}

.category-quick-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.75rem, 1.6vw, 1.25rem);
}

.category-quick-item {
  background: var(--bg-surface, #FFFFFF);
  border: 1.5px solid var(--border-light, #E8DECF);
  border-radius: 12px;
  padding: clamp(1.2rem, 2vw, 1.6rem) 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-dark, #1A1F26);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.category-quick-item:hover,
.category-quick-item.active {
  border-color: var(--gold-primary, #C9994F);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(201, 153, 79, 0.16);
}

.category-quick-icon {
  width: 44px;
  height: 44px;
  stroke: var(--gold-primary, #C9994F);
  stroke-width: 1.5;
  fill: none;
  transition: transform 0.3s ease;
}

.category-quick-item:hover .category-quick-icon {
  transform: scale(1.1);
}

.category-quick-name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
}

/* --------------------------------------------------------------------------
   5. Sección: "Soluciones empresariales" (Página 2 Wireframe)
   -------------------------------------------------------------------------- */
.soluciones-empresariales-section {
  background: #FFFFFF;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.soluciones-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 4vw, 3.8rem);
}

.soluciones-main-title {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--text-dark, #1A1F26);
  margin-bottom: 0.9rem;
  letter-spacing: -0.015em;
}

.soluciones-main-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.65;
  color: var(--text-body, #3E4551);
}

/* Cuadrícula Principal de Soluciones: Izquierda (3x2) + Derecha (Tarjeta Alta) */
.soluciones-layout-grid {
  display: grid;
  grid-template-columns: 2.15fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
}

.soluciones-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.8vw, 1.4rem);
}

.solucion-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light, #E8DECF);
  border-radius: 14px;
  padding: clamp(1.4rem, 2.2vw, 1.85rem) 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  position: relative;
}

.solucion-card:hover {
  border-color: var(--gold-primary, #C9994F);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(10, 25, 47, 0.07);
}

.solucion-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(201, 153, 79, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: background 0.3s ease;
}

.solucion-card:hover .solucion-icon-wrap {
  background: rgba(201, 153, 79, 0.16);
}

.solucion-icon-svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-primary, #C9994F);
  stroke-width: 1.6;
  fill: none;
}

.solucion-title {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark, #1A1F26);
  margin-bottom: 0.75rem;
}

.solucion-desc {
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--text-body, #5C616E);
}

/* Tarjeta Destacada de Acompañamiento a Colaboradores (Columna Derecha) */
.acompanamiento-tall-card {
  background: var(--bg-primary, #FAF5EE);
  border: 1px solid var(--border-light, #E8DECF);
  border-radius: 14px;
  padding: clamp(2rem, 3.5vw, 2.5rem) clamp(1.5rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.acompanamiento-tall-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(201, 153, 79, 0.12) 0%, rgba(250, 245, 238, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.acompanamiento-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-light, #E8DECF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.acompanamiento-title {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark, #1A1F26);
  margin-bottom: 1.25rem;
}

.acompanamiento-text {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-body, #3E4551);
  margin-bottom: 1.5rem;
}

.acompanamiento-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.acompanamiento-highlights li {
  font-size: 0.9rem;
  color: var(--text-dark, #1A1F26);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.acompanamiento-highlights li::before {
  content: '✓';
  color: var(--gold-primary, #C9994F);
  font-weight: bold;
}

/* Botón Central: "HABLEMOS DE TU EMPRESA" */
.soluciones-cta-center {
  text-align: center;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}

.btn-hablemos-empresa {
  background: var(--gold-gradient, linear-gradient(135deg, #D6A85D 0%, #C49448 50%, #B07F33 100%));
  color: #FFFFFF !important;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 1.05rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(196, 148, 72, 0.3);
  border: none;
  cursor: pointer;
}

.btn-hablemos-empresa:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(196, 148, 72, 0.45);
  filter: brightness(1.05);
}

/* --------------------------------------------------------------------------
   6. Sección: "Cómo funciona nuestra asesoría empresarial" (Página 3 Wireframe)
   -------------------------------------------------------------------------- */
.asesoria-proceso-section {
  background: var(--bg-primary, #FAF5EE);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-top: 1px solid var(--border-light, #E8DECF);
}

.proceso-heading-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(2.5rem, 4vw, 3.8rem);
}

.proceso-main-title {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
  color: var(--text-dark, #1A1F26);
  letter-spacing: -0.015em;
  margin-bottom: 0.6rem;
}

.proceso-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}

.proceso-step-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light, #E8DECF);
  border-radius: 14px;
  padding: clamp(1.8rem, 2.8vw, 2.3rem) clamp(1.2rem, 1.8vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.proceso-step-card:hover {
  border-color: var(--gold-primary, #C9994F);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(201, 153, 79, 0.12);
}

.step-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1.25rem;
}

.step-number {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-primary, #C9994F);
  line-height: 1;
}

.step-icon-svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-primary, #C9994F);
  stroke-width: 1.6;
  fill: none;
}

.step-title {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--text-dark, #1A1F26);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-body, #5C616E);
}

/* --------------------------------------------------------------------------
   7. Sección: "Mucho más que una póliza" (Página 3 Wireframe)
   -------------------------------------------------------------------------- */
.mucho-mas-section {
  background: #FFFFFF;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-bottom: 1px solid var(--border-light, #E8DECF);
}

.mucho-mas-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.mucho-mas-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mucho-mas-title {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 600;
  color: var(--text-dark, #1A1F26);
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}

.mucho-mas-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2.3rem;
  width: 100%;
}

.mucho-mas-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.mucho-mas-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(201, 153, 79, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mucho-mas-icon-svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-primary, #C9994F);
  stroke-width: 1.6;
  fill: none;
}

.mucho-mas-item-title {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark, #1A1F26);
  margin-bottom: 0.35rem;
}

.mucho-mas-item-desc {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-body, #5C616E);
}

.mucho-mas-media {
  position: relative;
  width: 100%;
}

.mucho-mas-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(5, 33, 73, 0.12);
  border: 1px solid var(--border-light, #E8DECF);
  aspect-ratio: 4 / 3;
  background: #E8DECF;
}

.mucho-mas-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mucho-mas-frame:hover img {
  transform: scale(1.025);
}

/* --------------------------------------------------------------------------
   8. Sección: "Preguntas frecuentes" (Página 4 Wireframe)
   -------------------------------------------------------------------------- */
.faq-empresas-section {
  background: var(--bg-primary, #FAF5EE);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.faq-heading-wrap {
  text-align: center;
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.faq-main-title {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 600;
  color: var(--text-dark, #1A1F26);
  letter-spacing: -0.015em;
}

.faq-accordion-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.faq-accordion-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light, #E8DECF);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-accordion-item.active {
  border-color: var(--gold-primary, #C9994F);
  box-shadow: 0 8px 20px rgba(201, 153, 79, 0.08);
}

.faq-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question-text {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark, #1A1F26);
  line-height: 1.35;
  transition: color 0.2s ease;
}

.faq-accordion-item.active .faq-question-text {
  color: var(--gold-hover, #B8883E);
}

.faq-plus-icon {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold-primary, #C9994F);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
  flex-shrink: 0;
}

.faq-accordion-item.active .faq-plus-icon {
  transform: rotate(45deg);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 1.6rem;
}

.faq-accordion-item.active .faq-answer-panel {
  max-height: 380px;
  padding: 0 1.6rem 1.4rem;
}

.faq-answer-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-body, #3E4551);
  border-top: 1px solid var(--border-light, #F0E6D8);
  padding-top: 0.9rem;
}

/* --------------------------------------------------------------------------
   9. Sección Formulario: "Cuéntanos qué necesita tu empresa" (Página 4)
   -------------------------------------------------------------------------- */
.contacto-empresas-section {
  background: #FFFFFF;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  border-top: 1px solid var(--border-light, #E8DECF);
}

.contacto-empresas-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: flex-start;
}

.contacto-empresas-info {
  display: flex;
  flex-direction: column;
}

.contacto-empresas-title {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-size: clamp(2.2rem, 3.8vw, 3.1rem);
  font-weight: 600;
  color: var(--text-dark, #1A1F26);
  line-height: 1.2;
  margin-bottom: 1.1rem;
  letter-spacing: -0.015em;
}

.contacto-empresas-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-body, #5C616E);
  margin-bottom: 2.2rem;
}

.contacto-direct-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--bg-primary, #FAF5EE);
  border: 1px solid var(--border-light, #E8DECF);
  border-radius: 12px;
  padding: 1.5rem;
}

.direct-detail-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.92rem;
  color: var(--text-dark, #1A1F26);
}

.direct-detail-icon {
  width: 20px;
  height: 20px;
  stroke: var(--gold-primary, #C9994F);
  stroke-width: 1.8;
  fill: none;
  flex-shrink: 0;
}

.direct-detail-item a {
  color: var(--text-dark, #1A1F26);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}

.direct-detail-item a:hover {
  color: var(--gold-primary, #C9994F);
}

/* Tarjeta del Formulario */
.empresa-form-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light, #E8DECF);
  border-radius: 16px;
  padding: clamp(1.8rem, 3vw, 2.5rem);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group-full {
  margin-bottom: 1.1rem;
}

.empresa-input,
.empresa-select,
.empresa-textarea {
  width: 100%;
  padding: 0.88rem 1.1rem;
  background: #FAFAFA;
  border: 1px solid #DFD7CA;
  border-radius: 8px;
  font-family: var(--font-sans, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.92rem;
  color: var(--text-dark, #1A1F26);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.empresa-input:focus,
.empresa-select:focus,
.empresa-textarea:focus {
  background: #FFFFFF;
  border-color: var(--gold-primary, #C9994F);
  box-shadow: 0 0 0 3px rgba(201, 153, 79, 0.15);
}

.empresa-textarea {
  resize: vertical;
  min-height: 90px;
}

.empresa-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
  font-size: 0.84rem;
  color: var(--text-muted, #6B7280);
  line-height: 1.45;
}

.empresa-checkbox-wrap input[type="checkbox"] {
  accent-color: var(--gold-primary, #C9994F);
  margin-top: 0.2rem;
  cursor: pointer;
}

.empresa-checkbox-wrap a {
  color: var(--gold-hover, #B8883E);
  text-decoration: underline;
}

.form-actions-right {
  display: flex;
  justify-content: flex-end;
}

.btn-submit-empresa {
  background: var(--gold-gradient, linear-gradient(135deg, #D6A85D 0%, #C49448 50%, #B07F33 100%));
  color: #FFFFFF !important;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.95rem 2.2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 18px rgba(196, 148, 72, 0.28);
}

.btn-submit-empresa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(196, 148, 72, 0.4);
  filter: brightness(1.04);
}

.form-status-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.88rem;
  display: none;
}

.form-status-message.success {
  display: block;
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}

.form-status-message.error {
  display: block;
  background: #FFEBEE;
  color: #C62828;
  border: 1px solid #EF9A9A;
}

/* --------------------------------------------------------------------------
   10. Responsividad (Mobile First y Adaptación)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .soluciones-layout-grid {
    grid-template-columns: 1fr;
  }
  
  .category-quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .proceso-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 868px) {
  .empresas-hero-grid,
  .mucho-mas-grid,
  .contacto-empresas-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .empresas-hero-content {
    align-items: center;
    text-align: center;
  }

  .empresas-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .empresas-hero-actions {
    justify-content: center;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pillar-item {
    justify-content: flex-start;
  }

  .pillar-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border-light, #E8DECF);
    padding-right: 0;
    padding-bottom: 1rem;
  }

  .soluciones-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid-3 {
    grid-template-columns: 1fr;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .form-actions-right {
    justify-content: stretch;
  }

  .btn-submit-empresa {
    width: 100%;
  }
}

@media (max-width: 580px) {
  .category-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .soluciones-cards-grid {
    grid-template-columns: 1fr;
  }

  .proceso-steps-grid {
    grid-template-columns: 1fr;
  }

  .btn-hero-gold,
  .btn-hero-outline {
    width: 100%;
  }
}
