
*,*::before,*::after{
    box-sizing:border-box;
    margin:0;
    padding:0
}
html{
    scroll-behavior:smooth
}
body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#0a0a0a;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased
}
:root{
    --red:#C41E1E;
    --red-dark:#9e1818;
    --ink:#0a0a0a;
    --muted:#6b6b6b;
    --border:#e5e5e5;
    --bg-off:#f7f7f6;
    --bg-dark:#0f0f0f;
    --max:1240px;
    --pad:clamp(20px,5vw,80px)
}
::-webkit-scrollbar{
    width:2px
}
::-webkit-scrollbar-thumb{
    background:var(--red)
}
#nav{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:200;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 var(--pad);
    background:rgba(10,10,10,.96);
    border-bottom:1px solid rgba(255,255,255,.07)
}
.nav-logo{
    display:flex;
    align-items:center;
    text-decoration:none
}
.nav-logo img{
    height:40px;
    display:block;
}
.nav-logo .fb{
    font-family:'Syne',sans-serif;
    font-size:17px;
    font-weight:700;
    letter-spacing:.04em;
    color:#fff;
    display:none
}
.nav-logo .fb em{
    font-style:normal;
    color:var(--red)
}
.nav-right{
    display:flex;
    align-items:center;
    gap:2px
}
.nav-right a{
    font-size:12px;
    font-weight:500;
    letter-spacing:.07em;
    text-transform:uppercase;
    color:rgba(255,255,255,.6);
    text-decoration:none;
    padding:8px 16px;
    transition:color .2s
}
.nav-right a:hover,.nav-right a.active{
    color:#fff
}
.nav-btn{
    background:var(--red)!important;
    color:#fff!important;
    border-radius:2px;
    margin-left:8px
}
.nav-btn:hover{
    background:var(--red-dark)!important
}
.hbg{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
    padding:6px
}
.hbg span{
    display:block;
    width:22px;
    height:1.5px;
    background:#fff;
    transition:.3s
}
/* HERO CONTACTO */
.contact-hero{
    background:var(--bg-dark);
    padding:160px var(--pad) 100px;
    position:relative;
    overflow:hidden
}
.contact-hero::before{
    content:'';
    position:absolute;
    top:-100px;
    right:-100px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(196,30,30,.04);
    pointer-events:none
}
.contact-hero-inner{
    max-width:var(--max);
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1.1fr;
    gap:100px;
    align-items:start
}
.lbl{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.15em;
    text-transform:uppercase;
    color:var(--red);
    margin-bottom:16px
}
.lbl::before{
    content:'';
    display:block;
    width:20px;
    height:1px;
    background:var(--red)
}
.ttl{
    font-family:'Syne',sans-serif;
    font-size:clamp(28px,3.5vw,52px);
    font-weight:700;
    line-height:1.1;
    letter-spacing:-.02em;
    color:#fff
}
.ttl em{
    font-style:normal;
    color:var(--red)
}
.txt{
    font-size:15px;
    font-weight:300;
    line-height:1.85
}
.contact-details{
    display:flex;
    flex-direction:column;
    gap:24px;
    margin-top:44px
}
.cdet{
    display:flex;
    gap:16px
}
.cdet-ic{
    width:44px;
    height:44px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:3px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    color:rgba(255,255,255,.4);
    transition:.2s
}
.cdet:hover .cdet-ic{
    border-color:rgba(196,30,30,.4);
    color:var(--red)
}
.cdet-text span{
    font-size:10px;
    font-weight:600;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:rgba(255,255,255,.22);
    display:block;
    margin-bottom:3px
}
.cdet-text p{
    font-size:14px;
    color:rgba(255,255,255,.6);
    font-weight:300
}
.cdet-text a{
    font-size:14px;
    color:rgba(255,255,255,.6);
    font-weight:300;
    text-decoration:none;
    transition:color .2s
}
.cdet-text a:hover{
    color:#fff
}
/* FORM */
.form-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.07);
    padding:48px 44px
}
.form-title{
    font-family:'Syne';
    font-size:20px;
    font-weight:600;
    color:#fff;
    margin-bottom:6px;
    letter-spacing:-.01em
}
.form-subtitle{
    font-size:13px;
    color:rgba(255,255,255,.35);
    margin-bottom:36px;
    font-weight:300
}
.form{
    display:flex;
    flex-direction:column;
    gap:12px
}
.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px
}
.form-label{
    font-size:10px;
    font-weight:600;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:rgba(255,255,255,.3);
    display:block;
    margin-bottom:6px
}
.form input,.form textarea,.form select{
    width:100%;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    padding:13px 16px;
    color:#fff;
    font-family:'Inter';
    font-size:14px;
    border-radius:2px;
    outline:none;
    transition:border-color .2s
}
.form input:focus,.form textarea:focus,.form select:focus{
    border-color:rgba(196,30,30,.5);
    background:rgba(196,30,30,.04)
}
.form input::placeholder,.form textarea::placeholder{
    color:rgba(255,255,255,.2)
}
.form select{
    color:rgba(255,255,255,.5);
    appearance:none;
    cursor:pointer
}
.form select option{
    background:#1a1a1a;
    color:#fff
}
.form textarea{
    min-height:140px;
    resize:vertical
}
.btn-p{
    font-size:12px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    padding:15px 40px;
    background:var(--red);
    color:#fff;
    border:none;
    border-radius:2px;
    text-decoration:none;
    transition:.25s;
    cursor:pointer;
    margin-top:4px
}
.btn-p:hover{
    background:var(--red-dark);
    transform:translateY(-1px)
}
/* INFO STRIPS */
.info-strip{
    background:var(--bg-off);
    padding:80px var(--pad)
}
.info-strip-inner{
    max-width:var(--max);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:var(--border);
    border:1px solid var(--border)
}
.info-block{
    background:#fff;
    padding:40px 32px;
    transition:background .2s
}
.info-block:hover{
    background:var(--bg-off)
}
.info-block-top{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:16px
}
.info-block-icon{
    width:40px;
    height:40px;
    border:1px solid var(--border);
    border-radius:3px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    flex-shrink:0;
    color:var(--red)
}
.info-block h3{
    font-family:'Syne';
    font-size:15px;
    font-weight:600;
    color:var(--ink);
    margin-bottom:4px
}
.info-block p{
    font-size:13px;
    color:var(--muted);
    font-weight:300;
    line-height:1.7
}
.info-block a{
    font-size:13px;
    color:var(--ink);
    text-decoration:none;
    font-weight:500;
    display:block;
    margin-top:4px;
    transition:color .2s
}
.info-block a:hover{
    color:var(--red)
}
/* HORARIOS */
.hours-section{
    background:#fff;
    padding:80px var(--pad)
}
.hours-inner{
    max-width:var(--max);
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center
}
.hours-visual{
    background:var(--bg-dark);
    padding:56px 44px;
    position:relative;
    overflow:hidden
}
.hours-visual::after{
    content:'';
    position:absolute;
    bottom:-40px;
    right:-40px;
    width:200px;
    height:200px;
    border-radius:50%;
    border:1px solid rgba(196,30,30,.1)
}
.hours-title{
    font-family:'Syne';
    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:rgba(255,255,255,.3);
    margin-bottom:24px
}
.hours-big{
    font-family:'Syne';
    font-size:72px;
    font-weight:800;
    color:#fff;
    line-height:1;
    letter-spacing:-.03em
}
.hours-big em{
    font-style:normal;
    color:var(--red)
}
.hours-note{
    font-size:12px;
    color:rgba(255,255,255,.35);
    margin-top:16px;
    font-weight:300;
    line-height:1.6
}
.hours-table{
    display:flex;
    flex-direction:column;
    gap:0
}
.hours-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 0;
    border-bottom:1px solid var(--border)
}
.hours-row:last-child{
    border-bottom:none
}
.hours-day{
    font-size:14px;
    font-weight:400;
    color:var(--ink)
}
.hours-time{
    font-size:13px;
    font-weight:500;
    color:var(--muted)
}
.hours-time.open{
    color:var(--red);
    font-weight:600
}
/* MAP EMBED */
.map-section{
    background:var(--bg-dark)
}
.map-inner{
    max-width:var(--max);
    margin:0 auto;
    padding:80px var(--pad)
}
.map-header{
    margin-bottom:40px
}
.map-container{
    width:100%;
    height:400px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.07);
    overflow:hidden;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center
}
.map-placeholder{
    text-align:center;
    color:rgba(255,255,255,.25)
}
.map-placeholder p{
    font-size:14px;
    margin-top:10px;
    font-weight:300
}
footer{
    background:#080808;
    border-top:1px solid rgba(255,255,255,.05);
    padding:60px var(--pad) 32px
}
.foot-inner{
    max-width:var(--max);
    margin:0 auto
}
.foot-top{
    display:grid;
    grid-template-columns:1.8fr 1fr 1fr 1fr;
    gap:50px;
    padding-bottom:48px;
    border-bottom:1px solid rgba(255,255,255,.05)
}
.foot-brand img{
    height:30px;
    filter:brightness(0) invert(.7);
    display:block;
    margin-bottom:16px
}
.foot-brand .fb2{
    font-family:'Syne';
    font-size:16px;
    font-weight:700;
    color:rgba(255,255,255,.6);
    letter-spacing:.04em;
    margin-bottom:14px;
    display:none
}
.foot-brand .fb2 em{
    font-style:normal;
    color:var(--red)
}
.foot-brand p{
    font-size:13px;
    font-weight:300;
    color:rgba(255,255,255,.28);
    line-height:1.8
}
.foot-col h5{
    font-size:10px;
    font-weight:600;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:rgba(255,255,255,.22);
    margin-bottom:18px
}
.foot-col a{
    display:block;
    font-size:13px;
    font-weight:300;
    color:rgba(255,255,255,.42);
    text-decoration:none;
    padding:4px 0;
    transition:color .2s
}
.foot-col a:hover{
    color:rgba(255,255,255,.8)
}
.fci{
    display:flex;
    gap:10px;
    margin-bottom:10px
}
.fci span:first-child{
    color:var(--red);
    font-size:13px;
    flex-shrink:0
}
.fci span:last-child{
    font-size:12.5px;
    font-weight:300;
    color:rgba(255,255,255,.32);
    line-height:1.5
}
.foot-bot{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:16px;
    padding-top:28px
}
.foot-bot p{
    font-size:11.5px;
    font-weight:300;
    color:rgba(255,255,255,.18)
}
.foot-li{
    display:inline-flex;
    align-items:center;
    gap:7px;
    font-size:11px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:rgba(255,255,255,.3);
    text-decoration:none;
    border:1px solid rgba(255,255,255,.1);
    padding:7px 16px;
    border-radius:2px;
    transition:.2s
}
.foot-li:hover{
    color:#fff;
    border-color:rgba(255,255,255,.3)
}
@media(max-width:1024px){
    .contact-hero-inner{
        grid-template-columns:1fr;
        gap:56px
    }
    .hours-inner{
        grid-template-columns:1fr
    }
    .info-strip-inner{
        grid-template-columns:1fr
    }
    .foot-top{
        grid-template-columns:1fr 1fr;
        gap:36px
    }
}
@media(max-width:768px){
    .hbg{
        display:flex
    }
    .nav-right{
        display:none
    }
    .nav-right.open{
        display:flex;
        flex-direction:column;
        position:fixed;
        inset:0;
        background:rgba(10,10,10,.97);
        justify-content:center;
        align-items:center;
        gap:16px;
        padding-top:72px
    }
    .nav-right.open a{
        font-size:18px
    }
    .form-row{
        grid-template-columns:1fr
    }
    .form-card{
        padding:32px 24px
    }
    .foot-top{
        grid-template-columns:1fr
    }
}

.nav-right .has-dd{
    cursor:default;
    position:relative
}
.nav-dd{
    display:none;
    position:absolute;
    top:calc(100% + 6px);
    left:0;
    min-width:230px;
    background:rgba(12,12,12,.98);
    border:1px solid rgba(255,255,255,.08);
    padding:8px 0;
    z-index:300
}
.nav-right .has-dd:hover .nav-dd{
    display:block
}
.nav-dd a{
    display:block;
    padding:9px 18px;
    font-size:11.5px;
    letter-spacing:.06em;
    border:none;
    color:rgba(255,255,255,.52);
    font-weight:500
}
.nav-dd a:hover{
    color:#fff;
    background:rgba(255,255,255,.04)
}