:root{
    --primary:#083B63;
    --primary-light:#0E507F;
    --secondary:#E9EDF1;
    --text:#F7F7F7;
    --text-dark:#0E1720;
    --line:rgba(255,255,255,.15);
	
	--secondary-color: #c18b3b;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter', sans-serif;
    background:#061E32;
    color:var(--text);
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
    transition: opacity .3s ease;
}

.container{
    width:min(1200px, calc(100% - 40px));
    margin:auto;
}

/* =========================
   HEADER
========================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    backdrop-filter:blur(14px);
    background:rgba(4,22,37,.7);
    border-bottom:1px solid var(--line);
}

.nav{
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo img{
    width:54px;
    height:54px;
    border-radius:50%;
}

.logo-text{
    font-family:'Oswald', sans-serif;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.logo-text strong{
    display:block;
    font-size:1.4rem;
    line-height:1;
}

.logo-text span{
    font-size:.8rem;
    opacity:.75;
}

.menu{
    display:flex;
    gap:32px;
    font-size:.95rem;
}

.menu a{
    position:relative;
    opacity:.85;
    transition:.3s;
}

.menu a:hover{
    opacity:1;
}

.menu a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:1px;
    background:white;
    transition:.3s;
}

.menu a:hover::after{
    width:100%;
}

/* =========================
   HERO
========================= */

#hero{
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 30%),
        linear-gradient(180deg, #0A3E66 0%, #051728 100%);
}

#hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size:60px 60px;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,.5), transparent);
}

.hero-content{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:80px;
    align-items:center;
    padding-top:80px;
}

.hero-copy h1{
    font-family:'Oswald', sans-serif;
    font-size:clamp(4rem, 10vw, 8rem);
    line-height:.9;
    letter-spacing:.03em;
    text-transform:uppercase;
    margin-bottom:28px;
}

.hero-copy p{
    max-width:640px;
    font-size:1.15rem;
    line-height:1.8;
    color:rgba(255,255,255,.82);
    margin-bottom:36px;
}

.hero-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 30px;
    border-radius:999px;
    font-weight:600;
    transition:.3s;
	cursor:pointer;
}

.btn-primary{
    background:white;
    color:var(--primary);
}

.btn-success{
    background:green;
    color:white;
}

.btn-primary:hover{
    transform:translateY(-2px);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.05);
}

.btn-secondary:hover{
    background:rgba(255,255,255,.1);
}

.hero-visual{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-circle{
    width:min(520px, 100%);
    aspect-ratio:1;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:
        0 0 80px rgba(0,0,0,.4),
        inset 0 0 40px rgba(255,255,255,.03);
}

/* =========================
   SECTIONS
========================= */

section{
    padding:120px 0;
	display:none;
}

#horarios {
	display:flex;
	justify-content:center;
	align-items:center;
}

#horarios img {
    max-width: 90vw;
    height: auto;
}

.section-header{
    margin-bottom:50px;
}

.section-header h2{
    font-family:'Oswald', sans-serif;
    font-size:4rem;
    line-height:1;
    text-transform:uppercase;
    margin-bottom:18px;
}

.section-header p{
    max-width:720px;
    line-height:1.8;
    color:rgba(255,255,255,.7);
}

.cards{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    padding:36px;
    transition:.35s;
}

.card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.05);
}

.card h3{
    font-family:'Oswald', sans-serif;
    font-size:1.7rem;
    margin-bottom:14px;
    text-transform:uppercase;
}

.card p{
    line-height:1.8;
    color:rgba(255,255,255,.72);
}

/* =========================
   CTA
========================= */

.cta{
    background:
        linear-gradient(135deg, rgba(255,255,255,.04), transparent),
        var(--primary);
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.cta-box{
    text-align:center;
    padding:40px 0;
}

.cta-box h2{
    font-family:'Oswald', sans-serif;
    font-size:4rem;
    text-transform:uppercase;
    margin-bottom:20px;
}

.cta-box p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    color:rgba(255,255,255,.75);
    margin-bottom:30px;
}

/* =========================
   FOOTER
========================= */

footer{
    padding:80px 0 40px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:40px;
    margin-bottom:50px;
}

.footer-title{
    font-family:'Oswald', sans-serif;
    text-transform:uppercase;
    margin-bottom:20px;
    font-size:1.4rem;
}

.footer-column p,
.footer-column a{
    color:rgba(255,255,255,.7);
    line-height:2;
}

.footer-column a:hover{
    color:white;
}

.copyright{
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.08);
    color:rgba(255,255,255,.45);
    font-size:.9rem;
}

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

@media (max-width:960px){

    .hero-content,
    .cards,
    .footer-grid{
        grid-template-columns:1fr;
    }

    #hero{
        padding:120px 0 80px;
    }

    .hero-copy{
        text-align:center;
    }

    .hero-copy p{
        margin-inline:auto;
    }

    .hero-actions{
        justify-content:center;
    }

    .hero-visual{
        order:-1;
    }

    .section-header h2,
    .cta-box h2{
        font-size:3rem;
    }
}

@media (max-width:640px){

    .menu{
        display:none;
    }

    .hero-copy h1{
        font-size:4rem;
    }

    .section-header h2,
    .cta-box h2{
        font-size:2.4rem;
    }

    .btn{
        width:100%;
    }
	
	section {
		padding:60px 0;
	}
	
	#hero {
		padding:60px;
	}
	
	#horarios {
		flex-direction:column;
	}
}