@charset "UTF-8";

/* =========================================
   VARIABLES & RESET
========================================= */
:root {
  /* Paleta Corporativa Extraída del Logo */
  --color-primary: #003b6d;   /* Azul Roitman */
  --color-secondary: #6b767e; /* Gris Abogados */
  --color-accent: #00284d;    /* Azul más oscuro para hovers */
  
  /* Gradaciones de Fondo */
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-surface: #f1f5f9;
  --bg-dark: #0f172a;
  
  /* Texto */
  --text-main: #1e293b;
  --text-muted: #475569;
  --text-light: #94a3b8;
  
  /* Sombras y Bordes */
  --shadow-sm: 0 2px 4px rgba(0, 59, 109, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 59, 109, 0.08);
  --shadow-lg: 0 12px 24px rgba(0, 59, 109, 0.12);
  --border-light: #e2e8f0;
  
  /* Fuentes */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --container-width: 1200px;
  --padding-section: 120px 0;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   COMPONENTES BÁSICOS
========================================= */
/* Botones */
.btn-primary, .btn-outline, .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 4px; /* Geometría rígida corporativa */
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--bg-white);
  border: none;
  box-shadow: 0 4px 12px rgba(0, 59, 109, 0.15);
}

.btn-primary:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 59, 109, 0.25);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background-color: var(--bg-surface);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
  font-weight: 800;
  margin-top: 16px;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
}

/* Etiquetas (Badges) */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background-color: var(--bg-surface);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 2px;
  margin-bottom: 24px;
}

.gradient-text {
  color: var(--color-primary);
}

/* =========================================
   NAVBAR (HEADER)
========================================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 75px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.02);
}

.hero-main-logo {
  max-width: 100%;
  width: 550px;
  height: auto;
  filter: drop-shadow(0px 15px 35px rgba(0, 59, 109, 0.35));
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-main-logo:hover {
  transform: translateY(-8px) scale(1.02);
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background-color: var(--color-primary);
  transition: 0.3s;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
  padding: 180px 0 120px;
  background: var(--bg-surface);
  min-height: 90vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

/* Patrón geométrico de fondo sutil eliminado por diseño sobrio */
.hero::before {
  display: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: 4.5rem;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.05;
  text-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.gradient-text {
  color: var(--color-primary);
  display: inline-block;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--bg-white);
  padding: 48px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  margin-left: auto;
}

.card-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.card-title h3 {
  font-size: 20px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stars i {
  color: var(--color-secondary);
  font-size: 12px;
  margin-left: 2px;
}

.card-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-surface);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 20px;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.stat-label {
  font-size: 12px;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* =========================================
   SERVICIOS
========================================= */
.services {
  padding: var(--padding-section);
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-title {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-top: 4px solid var(--color-primary); /* Acento corporativo superior */
  border-radius: 4px;
  padding: 48px 40px;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 59, 109, 0.2);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-surface);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--color-primary);
  color: var(--bg-white);
}

.service-badge {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  background: var(--bg-light);
  padding: 4px 8px;
  border: 1px solid var(--border-light);
  border-radius: 2px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text-main);
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 32px;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 40px;
}

.service-features li {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.service-features i {
  color: var(--color-primary);
  font-size: 12px;
  margin-top: 4px;
}

.service-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.service-btn {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.service-btn:hover {
  color: var(--color-accent);
  gap: 12px;
}

/* =========================================
   PERFIL (DIRECCIÓN)
========================================= */
.profile {
  padding: var(--padding-section);
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.profile-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 4px;
  border: 2px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info h3 {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.profile-info p {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.profile-credentials {
  display: flex;
  gap: 8px;
}

.credential {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 4px 8px;
  border-radius: 2px;
  color: var(--text-muted);
}

.profile-description {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.profile-description strong {
  color: var(--text-main);
}

.profile-description p {
  margin-bottom: 24px;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.experience-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.experience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 59, 109, 0.15);
}

.experience-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-surface);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 24px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.experience-card:hover .experience-icon {
  background: var(--color-primary);
  color: var(--bg-white);
}

.experience-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.experience-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* =========================================
   CONTACTO
========================================= */
.contact {
  padding: var(--padding-section);
  background-color: var(--bg-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.info-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 24px;
}

.info-card.whatsapp {
  border-left: 4px solid #25D366;
  background-color: rgba(37, 211, 102, 0.02);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.info-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 24px;
}

.info-icon.green {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.2);
}

.info-subtitle {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 4px;
}

.info-content h3 {
  font-size: 1.25rem;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-form-container {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 56px;
  box-shadow: var(--shadow-md);
}

.form-header {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
}

.form-header h3 {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--bg-white);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 59, 109, 0.1);
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background-color: var(--bg-dark);
  color: var(--bg-white);
  padding: 100px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-logo {
  margin-bottom: 32px;
}

.footer-logo-image {
  height: 85px;
  /* El logo es oscuro, aplicamos filtro para invertirlo a blanco en el footer oscuro */
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: var(--bg-white);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 300px;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  text-decoration: none;
  font-size: 18px;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.footer-links h3 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg-white);
  margin-bottom: 32px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 20px;
}

.footer-links a, .footer-links li {
  color: var(--bg-white);
  opacity: 0.8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-links i {
  color: var(--color-secondary);
  width: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-badges {
  display: flex;
  gap: 24px;
}

.footer-badge {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =========================================
   ANIMACIONES (INTERSECTION OBSERVER)
========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggering for child elements */
.services-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.services-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.services-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

/* =========================================
   RESPONSIVO
========================================= */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.5rem; }
  .hero-content, .profile-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { order: -1; }
  .card-stats { flex-direction: row; }
  .contact-content { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 140px 0 80px; }
  .hero-title { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; }
  .section-title { font-size: 2.25rem; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: var(--bg-white);
    flex-direction: column;
    padding: 60px 24px;
    transition: var(--transition-smooth);
  }
  .nav-menu.active { left: 0; }
  .nav-link { font-size: 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
  .contact-form-container { padding: 32px 24px; }
}

/* =========================================
   HERO INNER (Páginas de Servicios)
========================================= */
.hero-inner {
  padding: 160px 0 80px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-inner .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-inner-text {
  max-width: 600px;
}

.hero-inner-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 59, 109, 0.08); /* Sombra sobria */
}

.hero-inner-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-inner-image:hover img {
  transform: scale(1.02);
}

@media (max-width: 968px) {
  .hero-inner .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-inner-image {
    order: -1;
  }
}

/* ==================================
   PÁGINAS DE SERVICIOS - CONTENIDO 
===================================== */
.service-details {
  padding: 80px 0;
  background-color: var(--bg-surface);
}

.service-details .container {
  max-width: 900px; /* Previene el apelmazamiento y hace el texto legible */
  margin: 0 auto;
}

.service-content-block {
  margin-bottom: 50px;
  background: var(--bg-white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
  border: 1px solid rgba(0, 59, 109, 0.05);
}

@media (max-width: 768px) {
  .service-content-block {
    padding: 30px 20px;
  }
}

.service-content-block h2 {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.service-content-block h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
}

.service-content-block p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 20px;
}

.service-content-block ul {
  list-style: none;
  padding-left: 0;
}

.service-content-block ul li {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.service-content-block ul li::before {
  content: '\f058'; /* Check de FontAwesome */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-primary);
  position: absolute;
  left: 0;
  top: 3px;
}

/* CTA FINAL */
.cta-final {
  padding: 60px 40px;
  background: var(--color-primary);
  border-radius: 12px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 80px;
  color: var(--bg-white);
  box-shadow: 0 10px 30px rgba(0, 59, 109, 0.2);
}

.cta-final h2 {
  color: var(--bg-white);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-final p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  color: var(--bg-white);
}

.faq-container {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 20px;
}

.faq-question {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    z-index: 9999;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.4);
    color: #FFF;
}