
:root{
    --vino:#9F2241;
    --verde:#2D7F7B;
}

body{
    font-family: 'Montserrat', sans-serif;
    overflow-x:hidden;
}

html{
    scroll-behavior:smooth;
}

.navbar-custom{
    background:#fff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.hero{
    position:relative;
    min-height:100vh;

    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.70)
        ),
        url('img/hero.png');

    background-size:cover;
    background-position:center center;
    background-attachment:fixed;

    display:flex;
    align-items:center;
}

.logo-navbar{
    width:150px;
    max-width:100%;
    height:auto;
}

.hero h1{
    font-size:5rem;
    font-weight:900;
    color:#fff;
}

.hero .sub{
    font-family:'Patrick Hand', cursive;
    font-size:2rem;
    background:rgba(45,127,123,.92);
    display:inline-block;
    padding:10px 24px;
    border-radius:8px;
    color:#fff;
}

.hero p{
    color:#fff;
    font-size:1.15rem;
    margin-top:30px;
    max-width:750px;
}

.btn-cdmx{
    background:var(--vino);
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn-cdmx:hover{
    background:#7f1a34;
    color:#fff;
    transform:translateY(-3px);
}

.section-title{
    font-size:3rem;
    font-weight:900;
    color:var(--vino);
}

.info-card,
.accion-item{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.info-card:hover,
.accion-item:hover{
    transform:translateY(-10px);
}

.info-card img{
    height:300px;
    object-fit:cover;
}

.card-body{
    padding:30px;
}

.facts{
    background:linear-gradient(135deg, var(--verde), #1e5d5a);
    color:#fff;
}

.fact-number{
    font-size:4rem;
    font-weight:900;
}

.acciones{
    background:#fafafa;
}

.accion-item{
    padding:35px 30px;
    text-align:center;
    border-top:6px solid #9F2241;
}

.accion-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#9F2241,#c14464);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:2.5rem;
}

.gallery img{
    border-radius:24px;
    transition:.35s;
}

.gallery img:hover{
    transform:scale(1.03);
}

.callout{
    background:
        linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
        url('img/fondo.png');

    background-size:cover;
    background-position:center;
    color:#fff;
    padding:120px 0;
}

.footer{
    background:#111;
    color:#ddd;
}

#preloader{
    position:fixed;
    inset:0;
    background:#fff;
    z-index:99999;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.6s ease;
}

#preloader.hide{
    opacity:0;
    visibility:hidden;
}

.loader-box{
    text-align:center;
}

.loader-box img{
    width:180px;
    margin-bottom:25px;
}

.loader{
    width:55px;
    height:55px;
    border:6px solid #eee;
    border-top-color:#9F2241;
    border-radius:50%;
    animation:spin 1s linear infinite;
    margin:0 auto 15px;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all .9s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.floating-report{
    position:fixed;
    right:24px;
    bottom:90px;
    z-index:999;
    background:#9F2241;
    color:#fff;
    padding:14px 20px;
    border-radius:50px;
    text-decoration:none;
    font-weight:800;
    display:flex;
    gap:10px;
    align-items:center;
}

.btn-top{
    position:fixed;
    right:24px;
    bottom:25px;
    width:52px;
    height:52px;
    border-radius:50%;
    border:none;
    background:#2D7F7B;
    color:#fff;
    font-size:1.4rem;
    display:none;
    z-index:999;
}

.btn-top.show{
    display:block;
}

@media(max-width:768px){

    .hero{
        background-attachment:scroll;
        padding:120px 0 80px;
    }

    .hero h1{
        font-size:3rem;
    }

    .section-title{
        font-size:2rem;
    }

    .floating-report{
        right:15px;
        bottom:80px;
    }

    .btn-top{

