/* ==========================================================
   1. VARIABLES Y CONFIGURACIÓN GENERAL
   ========================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #faf9f6;
    color: #2b2b2b;
    overflow-x: hidden;
}


/* ==========================================================
   2. BODY Y TIPOGRAFÍA (Estilos base y utilidades generales)
   ========================================================== */
/* La tipografía global Poppins se aplica desde el selector universal (*) */


/* ==========================================================
   3. HEADER / NAVEGACIÓN
   ========================================================== */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    background: white;
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    z-index: 1000;
    transition: transform 0.3s ease;
}

header.oculto {
    transform: translateY(-100%);
}

.logo-container {
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.logo-img {
    height: 75px;
    width: auto;
}

.nav-izquierda {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-left: 30px;
}

.nav-izquierda a {
    white-space: nowrap;
    font-size: 15px;
}

.nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 16px;
    transition: .3s;
    position: relative;
}

.nav a:hover, 
nav a.active {
    color: #1b3b2b;
    font-weight: 600;
}

/* Efecto subrayado en enlaces de navegación */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #1b3b2b;
    transition: .3s;
}

nav a:hover::after {
    width: 100%;
}

.enlaces-menu {
    display: flex;
    gap: 35px;
}

.enlaces-menu a {
    text-decoration: none;
    color: #333;
}

.cta-container {
    margin-left: auto;
}

.btn-reservar {
    background-color: #1b3b2b;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: .3s;
}

.btn-reservar:hover {
    background-color: #2c5942;
}

/* Barra de aviso en movimiento (Marquesina) */
.barra-aviso-movimiento {
    background-color: #1b3b2b;
    color: #ffffff;
    padding: 12px 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-bottom: 2px solid #d1b17e;
    z-index: 999;
}

.marquesina-contenido {
    display: inline-block;
    white-space: nowrap;
    animation: moverDerecha 25s linear infinite;
    padding-left: 100%;
}

.marquesina-contenido span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.marquesina-contenido strong {
    color: #d1b17e;
    font-weight: 700;
}

@keyframes moverDerecha {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.barra-aviso-movimiento:hover .marquesina-contenido {
    animation-play-state: paused;
}


/* ==========================================================
   4. HERO
   ========================================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background-image: url('images/inicio.PNG');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.45);
    z-index: 1;
}

.texto {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.texto h1 {
    font-size: 54px;
    color: #1b3b2b;
    margin-bottom: 20px;
    line-height: 1.15;
    font-weight: 700;
}

.subtitulo-hero-dorado {
    color: #c5a059;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.descripcion-hero-cursiva {
    font-style: italic;
    font-size: 0.85rem;
    letter-spacing: -0.3px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #4a5568;
}

/* Botones del Hero */
.botones-hero {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.btn-acompañamiento {
    display: inline-block;
    background-color: #1b3b2b;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(27, 59, 43, 0.2);
}

.btn-acompañamiento:hover {
    background-color: #2c5942;
    transform: translateY(-2px);
}

.btn-sobre-mi {
    display: inline-block;
    background-color: transparent;
    color: #1b3b2b;
    border: 2px solid #1b3b2b;
    padding: 10px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-sobre-mi:hover {
    background-color: #1b3b2b;
    color: #ffffff;
    transform: translateY(-2px);
}


/* ==========================================================
   5. SECCIONES PRINCIPALES (Sobre mí, Cómo trabajo, Separadores)
   ========================================================== */
/* Sección Sobre Mí */

.sobre-mi {
    width: 100%;
    padding: 120px 8%;
    background: #f7f4ee;
    box-sizing: border-box;
}

.sobre-mi-contenedor {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 90px;
}

.sobre-mi-imagen {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.sobre-mi-imagen::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 450px;
    background: #d1b17e;
    border-radius: 25px;
    top: 25px;
    left: 35px;
    z-index: 0;
    opacity: 0.35;
}

.sobre-mi-imagen img {
    position: relative;
    z-index: 1;
    width: 360px;
    height: 450px;
    object-fit: cover;
    object-position: top center;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(27,59,43,0.15);
}

.sobre-mi-texto {
    flex: 1;
}

.sobre-mi-texto h2 {
    font-size: 46px;
    line-height: 1.2;
    color: #1b3b2b;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitulo-sobremi {
    font-size: 20px;
    color: #d1b17e;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.subtitulo-sobremi::after {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    background: #d1b17e;
    margin-top: 15px;
}

.sobre-mi-texto p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

/* ================================
   SEPARADOR VERDE HERO - SOBRE MÍ
================================ */

.separador-verde {
    background: linear-gradient(
        135deg,
        #1b3b2b 0%,
        #254936 50%,
        #1b3b2b 100%
    );
    padding: 35px 5%;
    text-align: center;
    color: #ffffff;
    border-top: 3px solid #d1b17e;
    border-bottom: 3px solid #d1b17e;
    position: relative;
    overflow: hidden;
}

.separador-verde::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(209,177,126,0.08);
    border-radius: 50%;
    top: -120px;
    right: -80px;
}

.separador-verde-contenido {
    position: relative;
    z-index: 1;
}


.separador-verde-contenido h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    line-height: 1.3;
}


.separador-verde-contenido p {
    font-size: 16px;
    color: #fdfcf7;
    opacity: 0.9;
    margin: 0;
}

.separador-verde {
    background-color: #1b3b2b;
    padding: 25px 5%;
    text-align: center;
    color: #ffffff;
    border-top: 3px solid #d1b17e;
    border-bottom: 3px solid #d1b17e;
}

.separador-verde-contenido h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
}

.separador-verde-contenido p {
    font-size: 15px;
    color: #fdfcf7;
    opacity: 0.9;
    margin: 0;
}

/* Sección Cómo Trabajo */
.seccion-como-trabajo {
    padding: 80px 8%;
    background-color: #faf9f6;
}

.trabajo-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.trabajo-header h2 {
    font-size: 32px;
    color: #1b3b2b;
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.trabajo-header p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
}

.pasos-contenedor-horizontal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 70px;
    position: relative;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pasos-contenedor-horizontal::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 8%;
    right: 8%;
    height: 2px;
    border-top: 2px dashed rgba(209, 177, 126, 0.6);
    z-index: 1;
}

.paso-item-h {
    background: transparent;
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.paso-icono-circulo {
    width: 85px;
    height: 85px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 1px solid rgba(209, 177, 126, 0.4);
    box-shadow: 0 4px 10px rgba(27, 59, 43, 0.04);
}

.paso-icono-circulo i {
    font-size: 28px;
    color: #1b3b2b;
}

.paso-numero-badge {
    width: 24px;
    height: 24px;
    background-color: #1b3b2b;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.paso-item-h h3 {
    font-size: 16px;
    color: #1b3b2b;
    margin-bottom: 8px;
    font-weight: 700;
}

.paso-item-h p {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.4;
}


/* ==========================================================
   6. SERVICIOS / TARJETAS (Planes, Qué incluye, Descuentos)
   ========================================================== */
/* Qué incluye */
.incluye-caja-grande {
    background-color: #ffffff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(27, 59, 43, 0.05);
    border: 1px solid rgba(209, 177, 126, 0.3);
    margin-bottom: 70px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.incluye-caja-grande > h3 {
    text-align: center;
    font-size: 26px;
    color: #1b3b2b;
    margin-bottom: 40px;
    font-weight: 700;
}

.incluye-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.incluye-card {
    background: #faf9f6;
    padding: 20px 25px;
    border-radius: 15px;
    border-left: 4px solid #1b3b2b;
}

.incluye-card strong {
    font-size: 16px;
    color: #1b3b2b;
    display: block;
    margin-bottom: 8px;
}

.incluye-card p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
}

/* Tarifa / Planes */
.tarifa-seccion-tres {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
   margin-top: 80px;
}

.tarifa-seccion-tres > h3 {
    font-size: 32px;
    color: #1b3b2b;
    margin-bottom: 40px;
    font-weight: 700;
}

.planes-grid-tres {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-bottom: 30px;
}

.tarjeta-plan-opcion {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 25px;
    box-shadow: 0 10px 30px rgba(27, 59, 43, 0.05);
    border: 1px solid rgba(209, 177, 126, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.tarjeta-plan-opcion:hover {
    transform: translateY(-5px);
}

.plan-destacado {
    border: 2px solid #d1b17e;
    box-shadow: 0 15px 40px rgba(27, 59, 43, 0.1);
    z-index: 2;
}

.etiqueta-mas-elegido {
    position: absolute;
    top: -15px;
    background-color: #1b3b2b;
    color: #d1b17e;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid #d1b17e;
}

.tarjeta-plan-opcion .precio-etiqueta {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4a5568;
    font-weight: 700;
    margin-bottom: 15px;
}

.tarjeta-plan-opcion .precio-numero {
    font-size: 40px;
    font-weight: 700;
    color: #1b3b2b;
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.tarjeta-plan-opcion .precio-numero span {
    font-size: 16px;
    font-weight: 400;
    color: #4a5568;
}

.precio-ahorro {
    font-size: 13px;
    color: #1b3b2b;
    font-weight: 600;
    margin-bottom: 10px;
    background-color: #faf9f6;
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px dashed rgba(209, 177, 126, 0.5);
}

.tarjeta-plan-opcion .precio-detalle {
    font-size: 13px;
    color: #4a5568;
    opacity: 0.8;
}

.btn-plan-opcion {
    display: inline-block;
    background-color: #ffffff;
    color: #1b3b2b;
    border: 2px solid #1b3b2b;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: .3s;
    width: 100%;
    margin-top: auto;
    box-sizing: border-box;
}

.btn-plan-opcion:hover {
    background-color: #1b3b2b;
    color: #ffffff;
}

.btn-plan-destacado-btn {
    background-color: #1b3b2b;
    color: #ffffff;
}

.btn-plan-destacado-btn:hover {
    background-color: #2c5942;
}

/* Descuentos y Compromiso Social */
.seccion-descuentos-solidarios {
    margin-top: 50px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(209, 177, 126, 0.4);
    box-shadow: 0 10px 30px rgba(27, 59, 43, 0.04);
    text-align: left;
}

.descuentos-grid-cuatro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.descuento-card {
    background: #faf9f6;
    padding: 22px;
    border-radius: 15px;
    border: 1px solid rgba(209, 177, 126, 0.4);
    box-shadow: 0 5px 15px rgba(27, 59, 43, 0.03);
}

.descuento-card strong {
    font-size: 15px;
    color: #1b3b2b;
    display: block;
    margin-bottom: 6px;
}

.descuento-card p {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
}


/* ==========================================================
   7. FORMULARIOS (Solicitud y Contacto)
   ========================================================== */
.seccion-contacto {
    padding: 80px 8%;
    background-color: #f7f4ee;
    text-align: center;
}

.contacto-caja-principal {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(27, 59, 43, 0.06);
    border: 1px solid rgba(209, 177, 126, 0.3);
}

.contacto-caja-principal h2 {
    font-size: 36px;
    color: #1b3b2b;
    margin-bottom: 15px;
    font-weight: 700;
}

.contacto-caja-principal p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contacto-info-contenedor {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contacto-enlace-oficial {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #faf9f6;
    color: #1b3b2b;
    padding: 14px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(209, 177, 126, 0.5);
    transition: all 0.3s ease;
}

.contacto-enlace-oficial:hover {
    background-color: #1b3b2b;
    color: #ffffff;
    transform: translateY(-2px);
}

.contacto-enlace-oficial i {
    font-size: 20px;
    color: #d1b17e;
}

.contacto-enlace-oficial:hover i {
    color: #d1b17e;
}

/* Página de Solicitud */
.solicitud {
    min-height: 100vh;
    padding: 120px 8%;
    background: #faf9f6;
}

.solicitud-header {
    max-width: 650px;
    margin: 0 auto 40px;
}

.solicitud-header h1 {
    text-align: left;
    font-size: 42px;
    color: #2b2b2b;
    margin-bottom: 25px;
    font-weight: 600;
}

.solicitud-header p {
    text-align: left;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.formulario-solicitud {
    max-width: 650px;
    margin: auto;
    background: white;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.formulario-solicitud label {
    display: block;
    margin-bottom: 8px;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
    color: #2b2b2b;
}

.formulario-solicitud input:not([type="radio"]):not([type="checkbox"]),
.formulario-solicitud textarea,
.formulario-solicitud select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

input[type="radio"],
input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    padding: 0 !important;
    margin: 3px 0 0 0;
}

.formulario-solicitud input:focus,
.formulario-solicitud select:focus,
.formulario-solicitud textarea:focus {
    border-color: #c5a059;
}

.formulario-solicitud textarea {
    resize: vertical;
}

.opcion-radio {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 22px;
    border: 1px solid #e6e0d8;
    border-radius: 14px;
    background: white;
    transition: .3s;
}

.opcion-radio:hover {
    border-color: #c5a059;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

#plan {
    color: #c5a059;
    font-weight: 600;
}

.privacidad {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin-top: 25px !important;
    font-size: 14px !important;
}

.privacidad input {
    width: auto;
}

.formulario-solicitud button {
    width: 100%;
    margin-top: 35px;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background: #c5a059;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.formulario-solicitud button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.situacion-formulario {
    margin-top: 30px;
    margin-bottom: 25px;
}

.titulo-opciones {
    display: block;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #2b2b2b;
    margin-bottom: 15px !important;
}

.titulo-opciones span {
    color: #c5a059;
}

.consentimientos {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.checkbox-linea {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px;
    margin: 15px 0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.6;
    color: #555;
    cursor: pointer;
}

.checkbox-linea input {
    appearance: auto;
    width: 16px !important;
    height: 16px !important;
    min-width: 16px;
    margin-top: 4px;
    padding: 0 !important;
    flex-shrink: 0;
}

.checkbox-linea span {
    display: block;
}

.checkbox-linea a {
    color: #c5a059;
    font-weight: 500;
    text-decoration: none;
}

.checkbox-linea a:hover {
    text-decoration: underline;
}


/* ==========================================================
   8. FOOTER (Definitivo y adaptado a pantalla grande)
   ========================================================== */
footer {
    background-color: #1b3b2b !important;
    color: #ffffff !important;
    padding: 40px 8%;
    text-align: center;
    border-top: 3px solid #d1b17e;
}

.footer-contenedor {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

@media(min-width: 768px) {
    .footer-contenedor {
        flex-direction: row;
    }
}

.footer-contenedor p {
    font-size: 13px;
    color: #fdfcf7;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #d1b17e;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-links a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.enlaces-legales {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.enlaces-legales a {
    color: #d1b17e !important;
    opacity: 0.9;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

.enlaces-legales a:hover {
    color: #ffffff !important;
    text-decoration: underline;
    opacity: 1;
}


/* ==========================================================
   BANNER DE COOKIES (Diseño flotante limpio y ordenado)
   ========================================================== */
.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 850px);
    background: #ffffff;
    padding: 24px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(27, 59, 43, 0.2);
    border: 1px solid rgba(209, 177, 126, 0.4);
    display: none; /* Se activa mediante JS */
    z-index: 9999;
    text-align: left;
}

.cookie-banner p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.cookie-banner a {
    color: #1b3b2b;
    font-weight: 600;
    text-decoration: underline;
}

.cookie-botones {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: .3s;
}

.aceptar {
    background: #1b3b2b;
    color: white;
}

.aceptar:hover {
    background: #2c5942;
}

.rechazar {
    background: #faf9f6;
    color: #4a5568;
    border: 1px solid #d5d0c7;
}

.rechazar:hover {
    background: #f0ebe1;
}

/* ==========================
   PREGUNTAS FRECUENTES
========================== */

.FAQ {
    padding: 40px 8%;
    background: #faf9f6;
}


.section-title {
    text-align: center;
    margin-bottom: 45px;
}


.section-title h2 {
    font-size: 2.3rem;
    color: #1b3b2b;
    margin-bottom: 15px;
}


.section-title p {
    color: #555;
    font-size: 1.05rem;
}


.faq-container {
    max-width: 900px;
    margin: auto;
}


.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid #d1b17e;
}


.faq-item summary {
    cursor: pointer;
    padding: 22px 25px;
    font-weight: 600;
    color: #1b3b2b;
    font-size: 1.05rem;
    list-style: none;
    position: relative;
}


.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 25px;
    font-size: 1.5rem;
    color: #d1b17e;
}


.faq-item[open] summary::after {
    content: "-";
}


.faq-item p {
    padding: 0 25px 25px;
    color: #555;
    line-height: 1.7;
}


@media(max-width:768px){

    .FAQ {
        padding: 30px 5%;
    }


    .section-title h2 {
        font-size: 1.8rem;
    }


    .faq-item summary {
        font-size: 0.95rem;
        padding: 18px;
    }


    .faq-item p {
        padding: 0 18px 20px;
        font-size: 0.95rem;
    }

}

/* =====================================================
   SECCIÓN OPINIONES
===================================================== */


.opiniones-section {
    padding: 40px 8%;
    background: #faf9f6;

}



/* CABECERA */

.opiniones-header {

    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;

}


.opiniones-header h2 {

    color: #1b3b2b;
    font-size: 2.4rem;
    margin-bottom: 15px;

}


.opiniones-header p {

    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;

}



/* TARJETAS DE OPINIONES */

.opiniones-grid {

    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}



.opinion-card {

    background: white;

    padding: 35px 30px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

    border-top: 4px solid #d1b17e;

    transition: transform .3s ease;

}



.opinion-card:hover {

    transform: translateY(-8px);

}



.estrellas {

    color: #d1b17e;

    font-size: 1.4rem;

    letter-spacing: 3px;

    margin-bottom: 20px;

}



.opinion-card p {

    color: #555;

    line-height: 1.7;

    font-size: 0.95rem;

    font-style: italic;

    margin-bottom: 25px;

}



.opinion-card h3 {

    color: #1b3b2b;

    font-size: 1.1rem;

    margin-bottom: 5px;

}



.opinion-card span {

    color: #777;

    font-size: 0.9rem;

}





/* =====================================================
   FORMULARIO DE OPINIONES
===================================================== */


.form-opinion {

    max-width: 750px;

    margin: 70px auto 0;

    background: white;

    padding: 30px;

    border-radius: 25px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);

}



.form-opinion h3 {

    text-align: center;

    color: #1b3b2b;

    font-size: 1.6rem;

    margin-bottom: 30px;

}



.form-opinion form {

    display: flex;

    flex-direction: column;

    gap: 18px;

}



.form-opinion input,
.form-opinion select,
.form-opinion textarea {


    width: 100%;

    padding: 15px 18px;

    border: 1px solid #ddd;

    border-radius: 12px;

    font-family: 'Poppins', sans-serif;

    font-size: 0.95rem;

    outline: none;

}



.form-opinion input:focus,
.form-opinion select:focus,
.form-opinion textarea:focus {

    border-color: #d1b17e;

}



.form-opinion textarea {

    min-height: 150px;

    resize: vertical;

}





/* CONSENTIMIENTO */

.check-opinion {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #555;

    font-size: 0.85rem;

    line-height: 1.5;

}



.check-opinion input {

    width: auto;

    margin-top: 5px;

}



.check-opinion a {

    color: #1b3b2b;

    text-decoration: underline;

    font-weight: 500;

}



.check-opinion a:hover {

    color: #d1b17e;

}





/* BOTÓN */

.form-opinion button {


    background: #1b3b2b;

    color: white;

    border: none;

    padding: 15px 35px;

    border-radius: 30px;

    font-family: 'Poppins', sans-serif;

    font-size: 1rem;

    cursor: pointer;

    transition: .3s;

}



.form-opinion button:hover {

    background: #d1b17e;

}





/* =====================================================
   RESPONSIVE
===================================================== */


@media(max-width: 1000px) {


    .opiniones-grid {

        grid-template-columns: 1fr 1fr;

    }


}



@media(max-width: 700px) {


    .opiniones-section {

        padding: 30px 5%;

    }


    .opiniones-header h2 {

        font-size: 2rem;

    }


    .opiniones-grid {

        grid-template-columns: 1fr;

    }


    .form-opinion {

        padding: 25px;

    }


}



/* FORMULARIO */

.form-opinion {

    max-width:700px;
    margin:70px auto 0;
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}


.form-opinion h3 {

    text-align:center;
    color:#1b3b2b;
    margin-bottom:30px;

}


.form-opinion form {

    display:flex;
    flex-direction:column;
    gap:15px;

}


.form-opinion input,
.form-opinion select,
.form-opinion textarea {

    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-family:'Poppins',sans-serif;

}


.form-opinion textarea {

    min-height:150px;
    resize:none;

}



.form-opinion button {

    background:#1b3b2b;
    color:white;
    border:none;
    padding:15px;
    border-radius:30px;
    cursor:pointer;
    font-size:1rem;

}


.form-opinion button:hover {

    background:#d1b17e;

}



@media(max-width:900px){

    .opiniones-grid{

        grid-template-columns:1fr;

    }


    .form-opinion{

        padding:25px;

    }

}

/* ==========================================================
   9. RESPONSIVE MÓVIL / TABLET (Medias Queries unificadas)
   ========================================================== */
@media (max-width: 1024px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .logo-container, 
    nav, 
    .cta-container {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    nav {
        gap: 20px;
        flex-wrap: wrap;
    }

    nav a {
        font-size: 15px;
    }

    .hero {
        padding: 40px 5%;
        text-align: left;
    }

    .texto {
        max-width: 100%;
    }

    .botones-hero {
        justify-content: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .texto h1 {
        font-size: 38px;
    }
}

@media (max-width: 950px) {
    .pasos-contenedor-horizontal {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pasos-contenedor-horizontal::before {
        display: none;
    }

    .planes-grid-tres {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 900px) {

    .seccion-como-trabajo {
        padding: 50px 4%;
    }
    
    .trabajo-header h2 {
        font-size: 32px;
    }
    
    .incluye-caja-grande {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px 20px;
        text-align: center;
    }

    .logo-container {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .nav-izquierda {
        margin-left: 0;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px;
    }

    .sobre-mi {
        padding: 70px 6%;
    }

    .sobre-mi-contenedor {
        flex-direction: column;
        gap: 50px;
    }


    .sobre-mi-imagen::before {
        width: 280px;
        height: 350px;
        top: 15px;
        left: 15px;
    }
   
    .sobre-mi-imagen img {
        width: 280px;
        height: 350px;
    }

    .sobre-mi-texto h2 {
        font-size: 36px;
        text-align: center;
    }

    .subtitulo-sobremi {
        text-align: center;
        font-size: 18px;
    }

    .subtitulo-sobremi {
        width: 100%;
        text-align: left;
    }

    .subtitulo-sobremi::after {
        margin-left: auto;
        margin-right: auto;
    }

    .sobre-mi-texto p {
        font-size: 16px;
        line-height: 1.7;
    }

    .enlaces-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .cta-container {
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .descuentos-grid-cuatro {
        grid-template-columns: 1fr;
    }

    .contacto-caja-principal {
        padding: 30px 20px;
    }

    .contacto-caja-principal h2 {
        font-size: 28px;
    }

    .contacto-caja-principal p {
        font-size: 15px;
    }

    .contacto-enlace-oficial {
        font-size: 14px;
        padding: 12px 20px;
        width: 100%;
        max-width: 100%;
        word-break: break-word;
    }

    .contacto-enlace-oficial i {
        font-size: 18px;
        flex-shrink: 0;
    }

    /* Hero Responsive Movil */
    .hero {
        width: 100%;
        padding-top: 25px;
        background-color: #faf9f6;
    }

    .texto h1, 
    .hero-texto h1 {
        font-size: 42px;
        margin-bottom: 12px;
        line-height: 1.1;
        font-weight: 700;
    }

    .subtitulo-hero-dorado {
        font-size: 14px;
        font-weight: 600;
        color: #d1b17e;
        margin-bottom: 18px;
        letter-spacing: 0.5px;
    }

    .descripcion-hero-cursiva {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 25px;
        color: #4a5568;
    }

    /* Solicitud & Formularios Responsive */
    .solicitud {
        padding: 70px 5% 60px;
    }

    .solicitud-header {
        margin-bottom: 35px;
    }

    .solicitud-header h1 {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 18px;
    }

    .solicitud-header p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .formulario-solicitud {
        padding: 25px 18px;
        border-radius: 12px;
    }

    .formulario-solicitud label {
        font-size: 14px;
        margin-top: 18px;
        margin-bottom: 7px;
    }

    .formulario-solicitud input,
    .formulario-solicitud select,
    .formulario-solicitud textarea {
        padding: 13px;
        font-size: 16px; /* Evita zoom automático en iPhone */
    }

    .formulario-solicitud button {
        margin-top: 25px;
        padding: 14px;
        font-size: 15px;
    }

    .privacidad {
        font-size: 13px !important;
    }
}


/* ==========================================================
   10. AJUSTES FINALES (Páginas de política, cookies y elementos flotantes)
   ========================================================== */
/* Página de Política de Privacidad */
.politica {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 8% 80px;
    background: #faf9f6;
}

.politica h1 {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 50px;
}

.politica h2 {
    color: #c5a059;
    font-size: 22px;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
}

.politica p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.politica ul {
    margin: 15px 0 25px 25px;
    color: #555;
    line-height: 1.8;
}

.politica li {
    margin-bottom: 8px;
}

.politica a {
    color: #c5a059;
    text-decoration: none;
}

.politica a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .politica {
        padding: 90px 5% 60px;
    }

    .politica h1 {
        font-size: 32px;
    }

    .politica h2 {
        font-size: 19px;
    }

    .politica p,
    .politica li {
        font-size: 15px;
    }
}

.contacto-cta {
    margin-top: 40px;
    text-align: center;
}

.contacto-cta h3 {
    color: #1b3b2b;
    font-size: 26px;
    margin-bottom: 12px;
}

.contacto-cta p {
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.boton-principal {
    display: inline-block;
    background: #1b3b2b;
    color: #ffffff;
    padding: 15px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(27, 59, 43, 0.15);
}

.boton-principal:hover {
    background: #d1b17e;
    color: #1b3b2b;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(27, 59, 43, 0.2);
}

PRECIOS PROMOCIONALES â 25% DE DESCUENTO
   ========================================================== */
.precio-original {
    font-size: 15px;
    color: #6b7280;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    margin-bottom: 2px;
}

.precio-promocional {
    margin-top: 0;
}

.precio-descuento {
    display: inline-block;
    margin: 8px auto 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #d1b17e;
    color: #1b3b2b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.plan-destacado .precio-descuento {
    background: #1b3b2b;
    color: #ffffff;
}

@media (max-width: 768px) {
    .precio-original {
        font-size: 14px;
    }

    .precio-descuento {
        font-size: 10px;
    }
}
