/* =====================================
   RESET
===================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#050d18;
    color:#ffffff;
    overflow-x:hidden;
}

/* =====================================
   VIDEO FONDO
===================================== */

.video-fondo{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.82);
    z-index:-1;
}

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

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px 20px;
}

.hero-content{
    max-width:900px;
}

.volver-inicio{
    display:inline-block;
    margin-bottom:25px;
    color:white;
    text-decoration:none;
    opacity:.8;
    transition:.3s;
}

.volver-inicio:hover{
    color:#F57C00;
    opacity:1;
}

.hero h1{
    font-size:5rem;
    font-weight:800;
    margin-bottom:25px;
    letter-spacing:2px;
}

.hero p{
    font-size:1.2rem;
    line-height:1.8;
    color:#cbd5e1;
}

.btn-principal{
    display:inline-block;
    margin-top:35px;
    padding:16px 35px;
    background:#F57C00;
    color:white;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.btn-principal:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(245,124,0,.35);
}

/* =====================================
   SEPARADOR
===================================== */

.section-divider{
    width:160px;
    height:1px;
    margin:90px auto;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(245,124,0,.2),
        rgba(245,124,0,.9),
        rgba(245,124,0,.2),
        transparent
    );
    box-shadow:0 0 10px rgba(245,124,0,.25);
}

/* =====================================
   TAGS GENERALES
===================================== */

.section-tag{
    display:block;
    text-align:center;
    color:#F57C00;
    font-size:.85rem;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:20px;
}

.section-subtitle{
    text-align:center;
    max-width:900px;
    margin:20px auto 60px;
    color:#cbd5e1;
    line-height:1.8;
}

/* =====================================
   ABOUT
===================================== */

.about-section{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:60px;
    align-items:center;
    padding:80px 10%;
}

.about-left h2{
    font-size:3rem;
    margin-bottom:25px;
}

.about-left p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:15px;
}

.about-right{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.stat-card{
    height:180px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    transition:.3s;
}

.stat-card:hover{
    border-color:#F57C00;
    transform:translateY(-5px);
}

.stat-card h3{
    color:#F57C00;
    font-size:2.6rem;
    margin-bottom:10px;
}

.stat-card p{
    font-weight:600;
}

/* =====================================
   PROCESO
===================================== */

.process-section{
    text-align:center;
    padding:80px 10%;
}

.process-section h2{
    font-size:3rem;
    margin-bottom:20px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,260px);
    justify-content:center;
    gap:30px;
    margin-top:60px;
}

.process-card{
    width:260px;
    height:260px;

    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);

    border-radius:10px; /* 👈 más serio y uniforme */

    padding:25px;

    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;

    transition:.3s;
}

.process-card:hover{
    border-color:#F57C00;
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(245,124,0,.25);
}

.numero{
    width:70px;
    height:70px;

    background:#F57C00;
    border-radius:8px; /* 👈 ahora todos iguales estilo “placa” */

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;
    font-size:1.6rem;
    font-weight:800;

    margin-bottom:4px;

    box-shadow:0 0 10px rgba(245,124,0,.20);
}
.process-card h3{
    color:#F57C00;
    margin-bottom:3px;
}

.process-card p{
    color:#cbd5e1;
    line-height:1.7;
}

/* =====================================
   SERVICIOS
===================================== */

.services-section{
    padding:80px 10%;
}

.section-header{
    text-align:center;
    margin-bottom:40px;
}

.section-header h2{
    font-size:3rem;
    margin-bottom:15px;
}

.services-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}

.service-card{
    width:320px;
    min-height:200px;

    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;

    padding:30px;

    text-decoration:none;
    color:white;

    transition:.3s;
}

.service-card:hover{
    border-color:#F57C00;
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(245,124,0,.25);
}

.service-card h3{
    margin-bottom:12px;
}

.service-card p{
    color:#cbd5e1;
    line-height:1.7;
}

/* =====================================
   UBICACIÓN
===================================== */

.location-section{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:50px;
    padding:80px 10%;
    align-items:start;
}

.mapa{
    height:500px;
    border-radius:20px;
    overflow:hidden;
    background:#111827;
}

.location-right h2{
    font-size:3rem;
    margin-bottom:20px;
}

.location-right p{
    color:#cbd5e1;
    line-height:1.8;
}

.contact-cards{
    margin-top:30px;
    display:grid;
    gap:20px;
}

.mini-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:25px;
    transition:.3s;
}

.mini-card:hover{
    border-color:#F57C00;
    transform:translateY(-5px);
}

/* =====================================
   CONTACTO
===================================== */

.contact-section{
    text-align:center;
    padding:80px 10%;
}

.contact-section h2{
    font-size:3rem;
    margin-bottom:20px;
}

.contact-form{
    max-width:800px;
    margin:50px auto 0;

    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    background:#111827;
    border:1px solid rgba(255,255,255,.10);
    border-radius:12px;
    padding:18px;
    color:white;
    font-family:inherit;
}

.contact-form textarea{
    min-height:180px;
}

.contact-form button{
    background:#F57C00;
    border:none;
    color:white;
    padding:18px;
    border-radius:12px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(245,124,0,.35);
}

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

.footer{
    background:#030812;
    padding:80px 10%;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

.footer-column h3{
    color:#F57C00;
    margin-bottom:20px;
}

.footer-column a,
.footer-column p{
    display:block;
    text-decoration:none;
    color:#cbd5e1;
    margin-bottom:10px;
}

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

@media(max-width:1000px){

    .about-section,
    .location-section{
        grid-template-columns:1fr;
    }

    .process-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:3rem;
    }

    .process-card{
        width:90%;
        height:auto;
    }

    .services-grid{
        flex-direction:column;
        align-items:center;
    }
}

.mapa{
    width:100%;
    height:500px;
    border-radius:20px;
    overflow:hidden;
}

.mapa iframe{
    width:100%;
    height:100%;
    border:0;
}

@media(max-width:768px){
    .mapa{
        height:320px;
    }
}

.contact-buttons{
    display:flex;
    gap:10px;
    margin-top:12px;
    justify-content:center;
}

/* =========================
   BOTÓN WHATSAPP
========================= */
.btn-whatsapp{
    background:rgba(37,211,102,.12);
    border:1px solid rgba(37,211,102,.35);
    color:#25D366;

    padding:10px 14px;
    border-radius:12px;

    text-decoration:none;
    font-weight:600;
    font-size:0.9rem;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
    backdrop-filter:blur(6px);
}

.btn-whatsapp:hover{
    background:#25D366;
    color:white;

    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(37,211,102,.25);
}

/* =========================
   BOTÓN MAIL (GMAIL RED)
========================= */
.btn-mail{
    background:rgba(234,67,53,.10);
    border:1px solid rgba(234,67,53,.35);
    color:#EA4335;

    padding:10px 14px;
    border-radius:12px;

    text-decoration:none;
    font-weight:600;
    font-size:0.9rem;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
    backdrop-filter:blur(6px);
}

.btn-mail:hover{
    background:#EA4335;
    color:white;

    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(234,67,53,.25);
}

/* =========================
   BOTONES CONTACTO (WHATSAPP + GMAIL)
========================= */

.contact-buttons{
    display:flex;
    gap:10px;
    margin-top:12px;
    justify-content:center;
}

.btn-icon{
    width:18px;
    height:18px;
    margin-right:8px;
}

.btn-whatsapp,
.btn-mail{
    padding:10px 14px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    font-size:0.9rem;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
    backdrop-filter:blur(6px);
}

/* WhatsApp */
.btn-whatsapp{
    background:rgba(37,211,102,.12);
    border:1px solid rgba(37,211,102,.35);
    color:#25D366;
}

.btn-whatsapp:hover{
    background:#25D366;
    color:white;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(37,211,102,.25);
}

/* Gmail */
.btn-mail{
    background:rgba(234,67,53,.10);
    border:1px solid rgba(234,67,53,.35);
    color:#EA4335;
}

.btn-mail:hover{
    background:#EA4335;
    color:white;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(234,67,53,.25);
}

.location-section{
    align-items:stretch;
}

.location-left,
.location-right{
    display:flex;
    flex-direction:column;
}

/* achica un poco las cards */
.mini-card{
    padding:18px;
    border-radius:14px;
}

/* compacta el grupo */
.contact-cards{
    margin-top:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.location-section{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    align-items:stretch;
}

/* IMPORTANTE: hace que el mapa ocupe todo el alto disponible */
.location-left{
    display:flex;
}

.mapa{
    flex:1;
    height:100%;
    min-height:420px; /* evita que quede chico */
    border-radius:20px;
    overflow:hidden;
}

/* asegura que el iframe llene todo */
.mapa iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

.footer-column{
    text-align:center;
}

.footer-column a{
    display:block;
    text-align:center;
}

.whatsapp-float {

    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: #25D366;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.25);

    z-index: 9999;

    transition: .3s;

}

.whatsapp-float:hover {

    transform: scale(1.1);

}