:root {
    --primary-blue: #28457F;
    --dark-grey: #333;
    --light-bg: #f4f7f6;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; }
body {   
  font-family: 'Poppins', sans-serif;
  color: var(--dark-grey);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  /* Mejora de renderizado */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container { 
    max-width: 1400px; 
    margin: auto; 
    padding: 0 20px; 
    width: 100%; 
    box-sizing: border-box; 
}

@media screen and (max-width: 768px) {
    .container { padding: 0 10px; }
}

/* Navbar */
.navbar { 
    background: rgba(255, 255, 255, 0); /* transparente */
    height: 80px; 
    display: flex; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: none; /* sin sombra para ver fondo principal */
    transition: background 0.3s ease; /* opcional: animación al hacer scroll */
}
.navbar.scrolled { 
    background: rgba(255, 255, 255, 0.9); /* opcional: fondo semi-transparente al hacer scroll */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}
.navbar .container { display: flex; justify-content: space-between; width: 100%; align-items: center; }
.logo { font-size: 24px; font-weight: 600; color: var(--primary-blue); }
.logo span { color: var(--dark-grey); }
.nav-links { display: flex; list-style: none; }
.nav-links li a { text-decoration: none; color: var(--dark-grey); margin-left: 25px; transition: 0.3s; }
.btn-cta { background: var(--primary-blue); color: white !important; padding: 10px 20px; border-radius: 50px; }
.navbar .step-text { color: var(--dark-grey); }

/* Hero */
.hero { 
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 90vh; 
    color: white; 
    display: flex; 
    align-items: center; 
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.btn-primary { background: #25D366; color: white; padding: 15px 30px; text-decoration: none; border-radius: 50px; font-weight: bold; }



/* Mixin para bloques full-width */
.block1_contacto, .block2, .block1_nosotros, .block2_nosotros, .block3, .block3_nosotros, .block4, .block4_nosotros, .block5, .block6, .block7, .piepagina {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    align-items: center;
    text-align: center;
}

/* block1_contacto */
.block1_contacto { height: auto; padding: 70px 0; color: rgb(0, 0, 0); }
.block1_contacto h1 { font-size: 2.6rem; margin-bottom: 1rem; text-align: left; }
.block1_contacto .step-text_black { text-align: left; display: block; max-width: 600px; }

/* block2 */
.block2 { height: auto; padding: 60px 0; color: rgb(0, 0, 0); background: #ffffff; }
.block2 h1 { font-size: 3rem; margin-bottom: 1rem; }

/* Logo strip etiqueta */
.features-trusted {
    text-align: center;
    font-size: 13px;
    color: #aaa;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Título de la sección features */
.features-header {
    text-align: center;
    margin: 48px 0 40px;
}
.features-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}
.features-subtitle {
    font-size: 0.95rem;
    color: #777;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid de tarjetas features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}
.feature-card {
    background: #e6eef7;
    border-radius: 12px;
    padding: 28px 22px;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
    box-shadow: 0 6px 20px rgba(40, 69, 127, 0.15);
    transform: translateY(-3px);
}
.feature-icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon-wrap img {
    max-width: 40px;
    height: auto;
}
.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.6;
}

@media screen and (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 560px) {
    .features-grid { grid-template-columns: 1fr; }
    .features-title { font-size: 1.5rem; }
}
 
/* block1 */
.block1_nosotros { height: 20vh; color: rgb(0, 0, 0); }
.block1_nosotros h1 { font-size: 3rem; margin-bottom: 1rem; }
 
/* block2_nosotros */
.block2_nosotros { height: 90vh; color: white; }
.block2_nosotros h1 { font-size: 3rem; margin-bottom: 1rem; }

/* block3 */
.block3 { height: auto; padding: 50px 0; color: rgb(255, 255, 255); background-color: rgb(32, 32, 32); }
.block3 h1 { font-size: 3rem; margin-bottom: 1rem; }
.step-item { text-align: left; }
.step-item .step-number { display: block; }
.step-item .step-title { display: block; }
.step-item .step-text { display: block; }

/* block3_nosotros */
.block3_nosotros { height: 75vh; color: rgb(0, 0, 0); }
.block3_nosotros h1 { font-size: 3rem; margin-bottom: 1rem; }

/* block4 */
 
.block4 { height: auto; padding: 50px 0; color: rgb(0, 0, 0); }
.block4 h1 { font-size: 3rem; margin-bottom: 1rem; }
 
/* block4_nosotros */
.block4_nosotros { height: 100vh; color: white; }
.block4_nosotros h1 { font-size: 3rem; margin-bottom: 1rem; }
 
/* block5 */
.block5 { height: 70vh; color: white; }
.block5 h1 { font-size: 3rem; margin-bottom: 1rem; }

/* block6 */
.block6 { height: auto; padding: 20px 0; color: rgb(0, 0, 0); }
.block6 h1 { font-size: 3rem; margin-bottom: 1rem; }

/* FAQ dos columnas dentro del block6 */
.faq-index-layout {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .faq-index-layout { flex-direction: column; }
}
 
/* block7 */
.block7 { height: 70vh; color: white; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.block7 h1 { font-size: 3rem; margin-bottom: 1rem; }

/* piepagina */
.piepagina { height: 75vh; color: rgb(255, 255, 255); background-color: rgb(32, 32, 32); }
.piepagina h1 { font-size: 3rem; margin-bottom: 1rem; }
 

/* Tabla Responsive */
.pricing-section { padding: 50px 0; background: var(--white); }
.table-container { overflow-x: auto; margin-top: 20px; width: 100%; box-sizing: border-box; }
table { width: 100%; border-collapse: collapse; background: white; border-radius: 10px; overflow: hidden; }
th, td { padding: 15px; text-align: left; border-bottom: 1px solid #ddd; }
th { background: var(--primary-blue); color: white; }

@media screen and (max-width: 768px) {
    table { font-size: 14px; width: 100%; }
    th, td { padding: 10px; font-size: 13px; }
    .step-number { font-size: 60px; }
    .step-title { font-size: 16px; }
    .step-text, .step-text_black { font-size: 13px; }
    
    /* Hacer tablas apilables en móvil */
    table td { display: block; width: 100%; }
    table tr { display: block; margin-bottom: 15px; }
}

/* Responsive Burger */
.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 3px; background-color: var(--dark-grey); margin: 5px; transition: 0.3s; }

@media screen and (max-width: 768px) {
    .nav-links { position: absolute; right: 0px; height: 92vh; top: 8vh; background-color: var(--white); display: flex; flex-direction: column; align-items: center; width: 50%; transform: translateX(100%); transition: transform 0.5s ease-in; }
    .nav-links li { opacity: 0; margin: 20px 0; }
    .nav-active { transform: translateX(0%); }
    .burger { display: block; }
    
    /* Responsive para bloques */
    .hero { height: auto; padding: 40px 0; }
    .hero h1 { font-size: 1.8rem; }
    
    .block1_contacto { height: auto; padding: 40px 0; }
    .block1_contacto h1 { font-size: 1.8rem; }
    
    .block2 { height: auto; padding: 60px 0; }
    .block2 h1 { font-size: 1.8rem; }
    
    .block1_nosotros { height: auto; padding: 30px 0; }
    .block1_nosotros h1 { font-size: 1.8rem; }
    
    .block2_nosotros { height: auto; padding: 40px 0; }
    .block2_nosotros h1 { font-size: 1.8rem; }
    
    .block3 { height: auto; padding: 40px 0; }
    .block3 h1 { font-size: 1.8rem; }
    
    .block3_nosotros { height: auto; padding: 40px 0; }
    .block3_nosotros h1 { font-size: 1.8rem; }
    
    .block4 { height: auto; padding: 40px 0; }
    .block4 h1 { font-size: 1.8rem; }
    
    .block4_nosotros { height: auto; padding: 40px 0; }
    .block4_nosotros h1 { font-size: 1.8rem; }
    
    .block5 { height: auto; padding: 40px 0; }
    .block5 h1 { font-size: 1.8rem; }
    
    .block6 { height: auto; padding: 40px 0; }
    .block6 h1 { font-size: 1.8rem; }
    
    .block7 { height: auto; padding: 40px 0; }
    .block7 h1 { font-size: 1.8rem; }
    
    .piepagina { height: auto; padding: 40px 0; }
    .piepagina h1 { font-size: 1.8rem; }
    
    /* Imagen responsiva */
    img { max-width: 100% !important; height: auto !important; }
}

.nav-active li { opacity: 1; transition: 0.5s; }


/* Burbuja Flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    /* Evita que cause scroll horizontal en móvil */
    max-width: 60px;
    overflow: hidden;
    transform: translateZ(0);
}

/* Efecto al pasar el mouse */
.whatsapp-float:hover {
    background-color: #1ebea5; /* Un verde un poco más oscuro */
    transform: scale(1.1); /* Se agranda ligeramente */
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

/* Estilo para la imagen/ícono dentro de la burbuja */
.whatsapp-icon {
    width: 35px; /* Ajusta el tamaño de la imagen dentro del círculo */
    height: 35px;
}


.table-white {
    background: #ffffff;
    color: #000000;
}

/* Tabla negra */
.table-black {
    background: #000000;
    color: #ffffff;
}


/* Tabla gris */
.table-gray {
    background: #202020;
    color: #ffffff;
}

/* Opcional: mejorar apariencia */
.table-white td, .table-white th {
    border: 0px solid #ddd;
}

.table-black td, .table-black th {
    border: 0px solid #444;
}


.table-gray td, .table-gray th {
    border: 0px solid #202020;
}
    
.step-number {
    font-size: 60px;
    font-weight: bold;
    display: block;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

.step-text {
    font-size: 16px;
    color: #ccc;
    display: block;
    margin-top: 5px;
}

.step-text_black {
    font-size: 16px;
    color: #000;
    display: block;
    margin-top: 5px;
}

/* Espaciado de celdas */
.table-gray td {
    padding: 15px;
    vertical-align: top;
}

 
/* Estilo base glass para todos los íconos */
.social-glass {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;

  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);

  color: white; /* todos los íconos blancos */
  font-size: 22px;
  text-decoration: none;

  transition: all 0.3s ease;
}

.social-glass:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}



/* Aplica a todos los links dentro de .footer-links */
.footer-links a {
  color: #ffffff;           /* Color blanco (puedes cambiarlo) */
  text-decoration: none;    /* Quita subrayado, opcional */
}

/* Mantener mismo color aunque el link ya se haya visitado */
.footer-links a:link,
.footer-links a:visited,
.footer-links a:hover,
.footer-links a:active {
  color: #ffffff;
  text-decoration: none; /* opcional */
}


/* El header ocupa toda la pantalla */
.block4_nosotros {
  width: 100%;
  height: 100vh; /* altura de la pantalla */
  position: relative;
  overflow: hidden;
}

/* Contenedor del video */
.video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Video como fondo */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  object-fit: cover; /* 🔥 clave para que se adapte */
  transform: translate(-50%, -50%);
}


/* Botón moderno redondeado */
.contact-form {
  max-width: 500px;
  margin: 20px auto;
}

.contact-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #28457F;
  box-shadow: 0 0 5px rgba(0, 86, 179, 0.3);
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px; /* 🔥 bien redondeado */
  
  background: linear-gradient(135deg, #1877f2, #4facfe); /* degradado */
  color: white;
  font-size: 16px;
  font-weight: 500;

  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover */
.contact-form button:hover {
  transform: translateY(-2px); /* efecto flotante */
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Click */
.contact-form button:active {
  transform: scale(0.98);
}

@media screen and (max-width: 768px) {
  .contact-form {
    max-width: 100%;
  }
  
  .contact-form input,
  .contact-form textarea {
    font-size: 16px; /* Evita zoom en iOS */
  }
}


.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 columnas */
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr; /* 1 columna en móvil */
  }
}

/* ===== IMÁGENES FULL-WIDTH ===== */
/* Contenedor de imágenes para que ocupen 100vw */
.image-full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Imágenes dentro de bloques */
.hero img, .block1_contacto img, .block2 img, .block1_nosotros img, 
.block2_nosotros img, .block3 img, .block3_nosotros img, .block4 img, 
.block4_nosotros img, .block5 img, .block6 img, .block7 img, .piepagina img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tablas con imágenes responsivas */
table img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Para fondos de imagen en headers */
[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
}

@media screen and (max-width: 768px) {
    /* Ajustes de imágenes en móvil */
    .hero img, .block1_contacto img, .block2 img, .block1_nosotros img, 
    .block2_nosotros img, .block3 img, .block3_nosotros img, .block4 img, 
    .block4_nosotros img, .block5 img, .block6 img, .block7 img, .piepagina img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Tablas responsivas con imágenes */
    table img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }
}

/* =============================================
   LAYOUTS FLEXBOX RESPONSIVOS
   ============================================= */

/* Franja de logos */
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 10px 0;
}
.logo-strip img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

/* (icon-grid reemplazado por features-grid) */

/* Layout de pasos: columna textos | columna imagen */
.steps-layout {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    align-items: flex-start;
}
.steps-layout .steps-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.steps-layout .image-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.steps-layout .image-col img {
    width: 90%;
    height: auto;
}

/* Layout genérico 2 columnas 50/50 */
.flex-row-2 {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    align-items: flex-start;
}
.flex-row-2 .col {
    flex: 1;
}
.flex-row-2 .col img {
    max-width: 100%;
    height: auto;
}

/* Footer layout */
.footer-flex {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    text-align: left;
    padding: 15px;
}
.footer-flex .col {
    flex: 1;
}

/* Colores de fondo para contenedores flex */
.bg-white { background: #ffffff; color: #000000; }
.bg-gray  { background: #202020; color: #ffffff; }

/* Responsive para layouts flex */
@media screen and (max-width: 768px) {
    .icon-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .steps-layout {
        flex-direction: column;
    }
    .steps-layout .image-col {
        order: -1;
    }
    .steps-layout .image-col img {
        width: 100%;
    }
    .flex-row-2 {
        flex-direction: column;
    }
    .footer-flex {
        flex-direction: column;
        gap: 24px;
    }
    .logo-strip img {
        max-height: 35px;
    }
    .block2 { height: auto; padding: 60px 0; }
    .block2 h1 { font-size: 1.8rem; }
}

/* ===== ACORDEÓN FAQ ===== */
.faq-list {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    font-size: 26px;
    font-weight: 300;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 10px;
}

.faq-answer p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    padding-bottom: 18px;
}

.faq-item.faq-open .faq-answer {
    max-height: 300px;
}

.faq-item.faq-open .faq-question {
    color: var(--primary-blue);
}

@media screen and (max-width: 768px) {
    .faq-question {
        font-size: 15px;
        padding: 16px 8px;
    }
    .faq-answer p {
        font-size: 13px;
    }
}

/* Piepagina overlay */
.piepagina {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

.piepagina::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.piepagina > * {
  position: relative;
  z-index: 1;
}

/* ===== CARRUSEL DE RESEÑAS (block5) ===== */
.reviews-carousel {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 40px;
    text-align: left;
    position: relative;
}

.review-quote-icon {
    font-size: 60px;
    line-height: 1;
    color: #28457F;
    font-family: Georgia, serif;
    margin-bottom: 20px;
    display: block;
}

.review-text {
    font-size: 1.15rem;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 30px;
    min-height: 80px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.3);
}

.review-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.review-author-info .review-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
    display: block;
}

.review-author-info .review-location {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    display: block;
}

.review-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.review-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.review-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
}

.review-btn.active,
.review-btn-next {
    background: #28457F;
    border-color: #28457F;
    padding: 0 18px;
    width: auto;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    gap: 6px;
}

.review-btn.active:hover,
.review-btn-next:hover {
    background: #28457F;
    border-color: #28457F;
}

.review-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-left: 10px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: background 0.3s;
}

.review-dot.active {
    background: #28457F;
}

/* block5 altura auto para que se adapte */
.block5 { height: auto !important; min-height: 50vh; color: white; }
.block5 .reviews-carousel { max-width: 100%; padding: 50px 60px; }

@media screen and (max-width: 768px) {
    .reviews-carousel { padding: 30px 20px; }
    .review-text { font-size: 1rem; }
}

/* =============================================
   NOSOTROS PAGE
   ============================================= */

/* N01 — Hero texto + imagen */
.about-hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #fff;
    padding: 70px 0 0 0;
}
.about-hero .container { text-align: left; }
.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #111;
    line-height: 1.15;
    margin-bottom: 18px;
}
.about-hero p {
    font-size: 0.95rem;
    color: #666;
    max-width: 100%;
    line-height: 1.7;
    margin-bottom: 40px;
}
.about-hero-img {
    width: 100%;
    border-radius: 16px;
    display: block;
    max-height: 480px;
    object-fit: cover;
}

/* N02 — Logo strip + "Cómo empezó" */
.about-logos {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #fff;
    padding: 50px 0 0 0;
    text-align: center;
}
.about-logos .trusted-label {
    font-size: 13px;
    color: #aaa;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: block;
}

.about-started {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #fff;
    padding: 70px 0;
}
.about-started .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    text-align: left;
}
.about-started .as-text { flex: 1; }
.about-started .as-text h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}
.about-started .as-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}
.about-started .as-image { flex: 1; }
.about-started .as-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 420px;
    display: block;
}

/* N03 — Video */
.about-video {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #f9f9f9;
    padding: 60px 0;
}
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}
.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 16px;
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: background 0.3s ease;
}
.video-overlay:hover { background: rgba(0,0,0,0.2); }
.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}
.play-btn:hover { background: rgba(255,255,255,0.35); transform: scale(1.1); }
.play-btn i { color: white; font-size: 22px; margin-left: 4px; }
.video-wrapper.playing .video-overlay { display: none; }

/* N04 — ¿Por qué elegir MoviCare? */
.about-why {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #fff;
    padding: 80px 0;
    text-align: center;
}
.about-why h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}
.about-why .subtitle {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 50px;
    display: block;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}
.why-card {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 28px 24px;
    transition: box-shadow 0.3s ease;
}
.why-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.why-card .why-icon {
    font-size: 1.6rem;
    color: #28457F;
    margin-bottom: 16px;
    display: block;
}
.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}
.why-card p { font-size: 0.88rem; color: #666; line-height: 1.6; }

/* =============================================
   SERVICIOS PAGE
   ============================================= */

.btn-reservar {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: white;
    color: #111;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-reservar:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.service-block {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #fff;
    padding: 80px 0;
}
.service-block.bg-light { background: #f9f9f9; }
.service-block .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}
.service-block.reverse .container { flex-direction: row-reverse; }
.service-block .sb-text { flex: 1; text-align: left; }
.service-block .sb-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.2;
}
.service-block .sb-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px;
}
.service-block .sb-image { flex: 1; }
.service-block .sb-image img {
    width: 100%;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    max-height: 420px;
    background: #e8f5e9;
    min-height: 280px;
}

.btn-service {
    display: inline-block;
    padding: 12px 26px;
    background: #28457F;
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-service:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46,125,50,0.3);
}

/* =============================================
   FAQ DOS COLUMNAS (servicios + nosotros)
   ============================================= */

.faq-two-col {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #fff;
    padding: 80px 0;
}
.faq-two-col .container {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
    text-align: left;
}
.faq-left { flex: 0 0 260px; }
.faq-left h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin-bottom: 14px;
}
.faq-left p { font-size: 0.9rem; color: #888; margin-bottom: 24px; }
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border: 1.5px solid #111;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-contact:hover { background: #111; color: #fff; }
.faq-right { flex: 1; }

/* =============================================
   CTA FINAL (servicios + nosotros)
   ============================================= */

.block7-cta {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
}
.block7-cta h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.2;
}
.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 50px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}
.btn-cta-white:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

/* =============================================
   RESPONSIVE — nosotros + servicios
   ============================================= */

@media screen and (max-width: 768px) {
    .about-hero h1 { font-size: 2rem; }
    .about-started .container { flex-direction: column; }
    .about-started .as-text h2 { font-size: 1.7rem; }
    .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .service-block .container,
    .service-block.reverse .container { flex-direction: column; }
    .service-block .sb-text h2 { font-size: 1.6rem; }
    .faq-two-col .container { flex-direction: column; }
    .faq-left { flex: unset; }
    .block7-cta h1 { font-size: 1.8rem; }
}
@media screen and (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* =============================================
   CONTACTO PAGE
   ============================================= */

/* Tarjetas de info (dirección, teléfono, email) */
.contact-info-cards {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
    margin-bottom: 10px;
}
.contact-info-card {
    flex: 1;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    border: 1px solid #ebebeb;
}
.contact-info-card img { margin-bottom: 6px; }
.contact-info-card .step-title { font-size: 0.95rem; }

/* Layout formulario + imagen */
.contact-form-layout {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
    text-align: left;
}
.contact-form-col { flex: 1; }
.contact-image-col {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-image-col img {
    width: 100%;
    height: auto;
    max-width: 480px;
}

/* Quitar el h2 "Contáctanos" del form ya que el título queda afuera */
.contact-form h2 { display: none; }

@media screen and (max-width: 768px) {
    .contact-info-cards { flex-direction: column; }
    .contact-form-layout { flex-direction: column; }
    .contact-image-col { display: none; }
}

/* ===== BOTÓN WHATSAPP HERO ===== */
.btn-hero-whatsapp {
    display: inline-block;
    margin-top: 10px;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.95);
    color: #28457F;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-hero-whatsapp:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
