/* ================================================================
   PÁGINAS ESTÁTICAS - Estilo Premium Patek
   Compartido por: Abundancia, Carisma, Karma, Renacer, Servicios
   ================================================================ */

/* CONTENEDOR PRINCIPAL ========================================= */
.pagina-estatica {
    background: #f8f7f4;
    color: var(--color-text);
    padding-bottom: 3rem;
}

/* HERO DORADO (sin imagen de fondo) ============================ */
.hero-estatico-dorado {
    background: #B19B6D;
    padding: 0;
    text-align: center;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-estatico-dorado .hero-estatico-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-estatico-dorado h1 {
    font-size: 2.2rem;
    color: #FFFFFF;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0;
    line-height: 1.45;
    margin: 0;
}

.hero-estatico-dorado .hero-estatico-nivel {
    font-size: 1.4rem;
    color: #FFFFFF;
    letter-spacing: 0;
    margin-bottom: 0.7rem;
    font-weight: 300;
    line-height: 1.2;
    font-family: 'Lato', sans-serif;
}

@media (min-width: 768px) {
    .hero-estatico-dorado {
        min-height: 450px;
    }
    
    .hero-estatico-dorado h1 {
        font-size: 3rem;
    }
}

/* HERO SECTION CON IMAGEN DE FONDO ============================= */
.hero-estatico {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 1.5rem;
    overflow: hidden;
    margin: 0;
}

.hero-estatico::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-estatico-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.hero-estatico-nivel {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-estatico h1 {
    font-size: 2rem;
    margin: 0 0 1rem;
    color: #ffffff;
    line-height: 1.2;
    font-weight: 300;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
    .hero-estatico {
        min-height: 420px;
        padding: 5rem 2rem;
    }

    .hero-estatico h1 {
        font-size: 3rem;
    }
}

/* VIÑETAS CON CHECKS =========================================== */
.vinetas-checks-left {
    max-width: 600px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vinetas-checks-left .vineta-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: #2F435A;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    text-align: left;
    width: 100%;  /* Añadir para que ocupe todo el ancho disponible */
    max-width: 400px;  /* Limitar ancho máximo para que no se estiren demasiado */
}

.vinetas-checks-left .vineta-item:last-child {
    margin-bottom: 0;
}

.vinetas-checks-left .vineta-check {
    width: 36px;
    height: 36px;
    display: block;
    flex-shrink: 0;
}

/* IMAGEN FULL WIDTH ============================================ */
.imagen-full {
    width: 100%;
    height: auto;
    min-height: 280px;  /* Altura mínima en móvil */
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 3rem 0 0;
}

@media (min-width: 768px) {
    .imagen-full {
        min-height: 420px;  /* Altura mínima en desktop */
    }
}

/* SECCIÓN CONTENIDO ============================================ */
.seccion-beige {
    padding: 2rem 1.5rem;
    margin: 1rem 0;
}

.seccion-beige-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.seccion-beige h2 {
    font-size: 2.3rem;
    color: #B19B6D;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.08em;
    line-height: 1.8;
}

.seccion-beige p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #2F435A;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    margin-bottom: 1.8rem;
}

@media (min-width: 768px) {
    .seccion-beige {
        padding: 4rem 2rem;
    }
}

/* LISTA CON FONDO DORADO ======================================= */
.lista-fondo-dorado {
    background: #B19B6D;
    padding: 1rem 2rem 2.5rem;
    margin: 2rem 0 0.1rem;
}

.lista-fondo-dorado-inner {
    max-width: 900px;
    margin: 0 auto;
}

.lista-fondo-dorado p {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    margin-bottom: 2rem;
}

.lista-fondo-dorado p:last-child {
    margin-bottom: 0;
}

/* VIDEO EMBEBIDO =============================================== */
.video-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .video-container {
        padding: 0;  /* Sin padding en móvil para que sea 100% */
    }
    
    .video-caption {
        padding: 0 1.5rem;  /* Caption sí mantiene padding */
    }
}

.video-caption {
    text-align: left;
    font-size: 1.3rem;
    color: #2F435A;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    margin: 1rem 0 0;
    margin-bottom: 1rem;
    }

.video-wrapper {
    position: relative;
    padding-top: 45%;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #6b7bd6;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.video-placeholder-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.video-placeholder-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 30px solid #E53935;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    margin-left: 8px;
}


/* TEXTOS DESTACADOS ============================================ */
.texto-destacado,
.texto-destacado-12,
.texto-destacado-35 {
    font-family: 'Lato', sans-serif;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 1000px;
    font-size: 1.5rem;
    color: #2F435A;
    font-weight: 300;
    line-height: 1.8;
}

.texto-destacado {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4CAF50;
    color: #2d5016;
    line-height: 1.5;
}

.texto-destacado-12 {
    background: rgba(255, 152, 0, 0.1);
    border-left: 4px solid #FF9800;
}

.texto-destacado-35 {
    background: rgba(74, 144, 226, 0.1);
    border-left: 4px solid #4A90E2;
    text-align: center;
}

/* CTA BUTTON =================================================== */
.cta-container {
    text-align: center;
    margin: 3rem auto;
    padding: 0 1rem;
}

.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #6284AB 0%, #357ABD 100%);
    color: #ffffff;
    padding: 1rem 3rem;
    border-radius: 100px;
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.cta-subtexto {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-muted);
    font-weight: 400;
}

/* FORMULARIO BENEC ============================================= */
.formulario-benec {
    max-width: 1000px;
    margin: 0 auto;
}

.formulario-bloque {
    margin-bottom: 3rem;
}

.formulario-bloque h3 {
    font-size: 1.5rem;
    color: #2F435A;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-align: left;
}

.lista-normas {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.lista-normas li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.8;
    color: #2F435A;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
}

.lista-normas li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #B19B6D;
    font-weight: bold;
    font-size: 1.5rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-wrapper label {
    font-size: 1.5rem;
    color: #2F435A;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    cursor: pointer;
}

.formulario-campo {
    margin-bottom: 3rem;
}

.formulario-campo h3 {
    font-size: 1.5rem;
    color: #2F435A;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.campo-descripcion {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #2F435A;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    margin-bottom: 1rem;
}

.formulario-campo textarea {
    width: 100%;
    padding: 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    color: #2F435A;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    min-height: 150px;
}

.formulario-campo textarea:focus {
    outline: none;
    border-color: #B19B6D;
    box-shadow: 0 0 0 3px rgba(198, 166, 100, 0.1);
}

.contador-caracteres {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #999;
    text-align: right;
    font-family: 'Lato', sans-serif;
}

.mensaje-exito {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.mensaje-exito p {
    font-size: 1.5rem;
    color: #2d5016;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    margin: 0.5rem 0;
}

.mensaje-exito strong {
    font-weight: 600;
}

/* CONTENEDOR GENERAL =========================================== */
.container-estatico {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* H2 fuera de sección (para páginas como Mente Única) ======== */
.pagina-estatica > h2 {
    font-size: 2.3rem;
    color: #B19B6D;
    text-align: center;
    margin: 3rem auto 1rem;
    padding: 0 2rem;
    font-weight: 300;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.08em;
    line-height: 1.8;
    max-width: 1000px;
}