/* <!-- Estilos de la web --> */
:root {
    --bg: 0 0% 100%;
    --fg: 234 18% 12%;
    --card: 0 0% 100%;
    --primary: 336, 76%, 37%;
    --primary-contrast: 0 0% 100%;
    --accent: 200 100% 48%;
    --muted: 336 44% 96%;
    --muted-fg: 224 9% 36%;
    --border: 220 16% 90%;
    --radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    color: hsl(var(--fg));
    background: hsl(var(--bg));
    line-height: 1.6;
}

.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-section {
    background-image: url('../img/HojasMovil.png'), url('../img/Fondo.png');
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: bottom left, center center;
}

.main-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.48) 0%,
            rgba(0, 0, 0, 0.0) 10%);
}

.main-banner {
    width: 150%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: white;
    position: relative;
}

.header-text {
    font-size: 1rem;
    font-weight: normal;
    text-transform: uppercase;
    font-family: 'Numans', sans-serif;
    text-shadow: -2px 2px 8px rgba(0, 0, 0, 0.9), -2px 2px 8px rgba(0, 0, 0, 0.9);
    line-height: 1.5;
    padding: 1.5rem 1rem 0 1rem;
}

.italic-text {
    font-weight: bolder;
    font-family: 'Playwrite ES Deco', cursive;
}

.main-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.construction-notice {
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    padding: 0 2rem;
}

.main-title {
    width: 110%;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.logo-image {
    filter: drop-shadow(8px 8px 16px rgba(0, 0, 0, 0.9));
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    filter: drop-shadow(8px 8px 16px rgba(0, 0, 0, 0.9))
}

.social-icon {
    width: 1.5rem;
    fill: white;
    display: block;
}

.social-icons a {
    padding: 12px;
    border-radius: 50%;
    background-color: transparent;
    transition:
        padding 0.2s,
        background 0.2s,
        border 0.2s,
        transform 0.2s;
}

.social-icons a:hover,
.social-icons a:focus {
    transform: scale(1.25) rotate(8deg);
    transition: transform 0.2s;
    background: rgba(30, 30, 40, 0.25);
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: 'Numans', sans-serif;
    padding: 1rem;
    font-size: 0.8rem;
    margin-top: 1.5rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
}

.cta-btn {
    color: white;
    padding: 0.5rem 1rem;
    border: 5px solid white;
    border-radius: 50px;
    font-weight: bold;
    background: transparent;
    transition:
        background 0.3s cubic-bezier(.4, 2, .6, 1),
        color 0.3s cubic-bezier(.4, 2, .6, 1),
        transform 0.2s cubic-bezier(.4, 2, .6, 1),
        box-shadow 0.2s cubic-bezier(.4, 2, .6, 1);
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.10);
}

.cta-btn:hover,
.cta-btn:focus {
    background: white;
    color: #1e1e28;
    transform: scale(1.07);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18);
}


@keyframes scrollcue {
    0% {
        transform: translateY(0);
        opacity: .9
    }

    70% {
        transform: translateY(-12px);
        opacity: .2
    }

    100% {
        transform: translateY(0);
        opacity: .9
    }
}

.membership-section {
    /* background-color: #A81752; */
    /* #0d0e19 */
    padding: 72px 0
}

.container {
    width: min(1120px, 92vw);
    margin-inline: auto
}

.card {
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 20px;
    padding: clamp(20px, 4vw, 48px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .06)
}

.membership-header {
    font-size: clamp(1.6rem, 3vw, 1.9rem);
    line-height: 1.2;
    margin: 0;
    text-align: center;
    color: hsl(var(--primary));
    margin-bottom: 2rem;
}

.lead {
    margin: .5rem 0 1.25rem;
    color: hsl(var(--muted-fg))
}

.grid {
    display: grid;
    gap: 20px;
    margin-top: 20px
}

.term h3 {
    font-weight: bold;
    margin: .25rem 0 .5rem;
    font-size: 1.125rem;
    color: hsl(var(--primary));
}

.term p {
    margin: 0;
    color: hsl(var(--muted-fg))
}


.note {
    margin-top: 20px;
    padding: 16px;
    border-radius: 12px;
    background: hsl(var(--muted));
    color: hsl(var(--fg));
    border: 1px solid hsl(var(--border))
}

.membership-btn {
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    background: hsl(var(--primary));
    transition:
        background 0.3s cubic-bezier(.4, 2, .6, 1),
        color 0.3s cubic-bezier(.4, 2, .6, 1),
        transform 0.2s cubic-bezier(.4, 2, .6, 1),
        box-shadow 0.2s cubic-bezier(.4, 2, .6, 1);
}

.membership-btn:hover,
.membership-btn:focus {
    color: white;
    transform: scale(1.07);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.18);
}

.terms-footer {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap
}

.link {
    color: hsl(var(--primary));
    text-decoration: none;
    font-weight: 600
}

.link:hover {
    opacity: .9
}

.site-footer {
    border-top: 1px solid hsl(var(--border));
    background: hsl(var(--bg))
}

.footer-inner {
    padding: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: center
}

.footer-nav {
    display: flex;
    gap: 16px
}


@media (orientation: landscape) {
    .main-section {
        background-image: url('../img/Hojas.png'), url('../img/Fondo.png');
        background-attachment: fixed, fixed;
    }

    .main-banner {
        width: 100%;
    }

    .main-block {
        margin-top: 4rem;
    }

    .main-title {
        width: 100%;
        margin: 0;
    }

    .cta-section {
        margin-bottom: 1.5rem;
    }
}

/* Media query para tablet */
@media (min-width: 600px) and (orientation: portrait) {
    .header-text {
        font-size: 1.5rem;
        padding: 4rem 1rem;
    }

    .construction-notice {
        font-size: 2rem;
    }

    .social-icons {
        gap: 3rem;
    }

    .social-icon {
        width: 2.5rem;
    }

    .cta-section {
        font-size: 1.2rem;
    }
}

@media (min-width: 900px) and (orientation: landscape) {
    .header-text {
        font-size: 1.5rem;
        padding: 4rem 1rem;
    }

    .construction-notice {
        font-size: 2rem;
    }

    .social-icons {
        gap: 3rem;
    }

    .social-icon {
        width: 2.5rem;
    }

    .cta-section {
        font-size: 1.2rem;
    }
}

/* Media query para escritorio */
@media (min-width: 1200px) {
    .header-text {
        font-size: 1.8rem;
        padding: 5rem 2rem 0 2rem;
    }

    .main-banner {
        width: 90%;
    }

    .main-title {
        width: 70%;
        margin-left: 15%;
    }

    .social-icons {
        gap: 4rem;
    }

    .cta-section {
        margin-top: 4rem;
        font-size: 1.2rem;
    }
}

@media (min-width:640px) {
    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (min-width:768px) {
    .footer-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between
    }
}