/**
 * Digital Air - Vista da_terminos (Términos y Condiciones)
 * Sin nav, banner con imagen, contenido T&C
 */

.view-da_terminos header,
.view-da_terminos nav {
    display: none !important;
}

body.view-da_terminos {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.da_terminos-hero-wrap {
    margin-top: 0;
    padding-top: 0;
    background: #ffffff;
}

/* Hero: imagen hangar de fondo, banner oscuro (navbar) en la parte superior con logo centrado */
.da_terminos-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    box-sizing: border-box;
}

.da_terminos-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Gradiente entre hero e intro */
.da_terminos-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 45%, rgba(255, 255, 255, 0.3) 70%, rgba(255, 255, 255, 0.9) 90%, #ffffff 100%);
    pointer-events: none;
}

.da_terminos-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Logo solo en el hero: desaparece al scrollear (no fijo) */
.da_terminos-hero__banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 18vh;
    min-height: 100px;
    max-height: 180px;
    background: transparent;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: env(safe-area-inset-top) 2rem 1rem;
    box-sizing: border-box;
}

.da_terminos-hero__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0;
}

.da_terminos-hero__logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.da_terminos-intro {
    background: #ffffff;
    padding: 4rem 1.5rem 4.5rem;
    margin-top: 0;
}

.da_terminos-intro-inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
}

.da_terminos-intro-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.3;
}

.da_terminos-intro-title-line1 {
    display: block;
    font-size: clamp(2rem, 3.5vw, 2.85rem);
}

.da_terminos-intro-title-line2 {
    display: block;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 400;
}

.da_terminos-intro-underline {
    display: block;
    width: 70px;
    height: 5px;
    background: #00b8f2;
    margin: 0.75rem auto 2rem;
    border: none;
}

.da_terminos-intro-body {
    text-align: justify;
    max-width: 100%;
    margin: 0;
    padding-left: 150px;
    padding-right: 150px;
    box-sizing: border-box;
}

.da_terminos-intro-subtitle {
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
    margin: 0 0 1rem 0;
    letter-spacing: 0.2px;
}

.da_terminos-section-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin: 2rem 0 0.75rem 0;
    text-align: left;
}

.da_terminos-intro-text {
    margin: 0 0 1rem 0;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.da_terminos-intro-text:last-of-type {
    margin-bottom: 0;
}

.da_terminos-list {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.7;
}

.da_terminos-list li {
    margin-bottom: 0.5rem;
}

.da_terminos-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .da_terminos-intro-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Responsive: banner del logo pegado al borde superior en móviles */
@media (max-width: 768px) {
    .da_terminos-hero__banner {
        min-height: 80px;
        max-height: 140px;
        padding: env(safe-area-inset-top) 1rem 0.75rem;
    }
    .da_terminos-hero__logo {
        max-width: 160px;
    }
}
