/* ================================= */
/* RESET */
/* ================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
     position:relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1300px;
    margin: auto;
    width: 100%;
}

/* ================================= */
/* HEADER */
/* ================================= */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    transition: 0.4s;
    padding: 12px 40px;
}

.header.scrolled {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}


/* NAV */

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: auto;
    gap: 10px;
}


/* LOGO */

.logo img {
    width: 220px;
    transition: 0.3s;
}

.header.scrolled .logo img {
    width: 170px;
}


/* MENU */

.nav-menu ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.header.scrolled .nav-menu a {
    color: #111;
}

.nav-menu a:hover {
    color: #20c4c4;
}


/* MENU MOBILE BUTTON */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    align-items: center;
    justify-content: center;
}

.header.scrolled .menu-toggle {
    color: black;
}


/* ================================= */
/* BOTONES */
/* ================================= */

.btn-cotizar {
    background: #20c4c4;
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-cotizar:hover {
    background: #18a4a4;
}

.nav-cta {
    margin-left: 10px;
}


/* ================================= */
/* HERO */
/* ================================= */
/*
.hero {
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
}
*/

/* ================================= */
/* SECCION NOSOTROS */
/* ================================= */

.seccion-nosotros {
    padding: 140px 40px;
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #D3B88D 60%,
        #f3eee8 100%
    );
}

.decoracion-nosotros {
    position: absolute;
    width: 700px;
    height: 700px;

    background: radial-gradient(
        circle,
        rgba(32,196,196,0.15) 0%,
        rgba(32,196,196,0) 70%
    );

    top: -200px;
    right: -200px;
    z-index: 0;
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nosotros-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.nosotros-contenido h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0 20px 0;
}

.nosotros-tag {
    color: #20c4c4;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

.linea-decorativa {
    width: 70px;
    height: 3px;
    background: #20c4c4;
    margin: 15px 0 25px 0;
}

.nosotros-contenido p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.btn-nosotros {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 28px;
    background: #20c4c4;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-nosotros:hover {
    background: #19a7a7;
}

.stats-eventos{
    display:flex;
    gap:40px;
    margin-top:30px;
}

.stat-item{
    text-align:center;
}

.stat-numero{
    display:block;
    font-size:32px;
    font-weight:700;
    color:#20c4c4;
}

.stat-texto{
    font-size:13px;
    color:#666;
}
/* ================================= */
/* SERVICIOS */
/* ================================= */

.seccion-servicios {
    padding: 140px 40px;
    background: #f7f7f7;
}

.titulo-seccion {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 70px;
}

.titulo-seccion h2 {
    font-size: 42px;
    font-weight: 700;
    margin-top: 15px;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.servicio-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
}

.servicio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.servicio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;

    background: linear-gradient(
        0deg,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0)
    );

    color: white;
}

.servicio-card:hover img {
    transform: scale(1.08);
}


/* ================================= */
/* GALERIA */
/* ================================= */
.galeria-item img{
    cursor:pointer;
}

.seccion-galeria {
    padding: 140px 40px;
    background: #f6f3ef;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: 260px;
    gap: 20px;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.galeria-item:hover img {
    transform: scale(1.08);
}

.galeria-item.grande{
    grid-row: span 2;
}


/* ================================= */
/* TESTIMONIOS */
/* ================================= */

.seccion-testimonios {
    padding: 140px 40px;
    background: #f2fbfb;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.testimonio-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* ============================= */
/* SECCION COTIZAR */
/* ============================= */

.seccion-cotizar {
    padding: 140px 40px;
    background: #f7f7f7;
}

.cotizar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/* TEXTO */

.cotizar-info h2 {
    font-size: 40px;
    margin: 15px 0;
}

.cotizar-beneficios {
    margin-top: 20px;
    list-style: none;
    color: #555;
    line-height: 1.8;
}


/* FORMULARIO */

.cotizar-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #20c4c4;
}


/* BOTON */

.btn-cotizar-form {
    width: 100%;
    padding: 14px;

    border: none;
    border-radius: 30px;

    background: #20c4c4;
    color: white;

    font-weight: 600;
    cursor: pointer;

    transition: 0.3s;
}

.btn-cotizar-form:hover {
    background: #19a7a7;
}


/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media (max-width:1015px) {

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;

        display: none;
        flex-direction: column;

        padding: 20px 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-menu a {
        color: #111;
        font-size: 16px;
    }

    .nav-menu.active {
        display: flex;
    }

    .servicios-grid,
    .galeria-grid,
    .testimonios-grid {
        grid-template-columns: 1fr;
    }

    .nosotros-grid {
        grid-template-columns: 1fr;
    }

    .cotizar-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


/* MOBILE */

@media (max-width:600px) {

    .header {
        padding: 10px 15px;
    }

    .logo img {
        width: 130px;
    }

    .header.scrolled .logo img {
        width: 110px;
    }

    .menu-toggle {
        font-size: 26px;
    }

    .btn-cotizar {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 20px;
    }

}


/* SMALL MOBILE */

@media (max-width:380px) {

    .logo img {
        width: 110px;
    }

    .btn-cotizar {
        padding: 5px 10px;
        font-size: 11px;
    }

}


/* ============================= */
/* ANIMACION SCROLL */
/* ============================= */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}




/* ================================= */
/* BOTON SOCIAL FLOTANTE */
/* ================================= */
.social-float{
    position:fixed;
    left:20px;
    bottom:20px;
    z-index:999999;
}
/* boton principal */

.social-toggle{

    width:55px;
    height:55px;

    background:#20c4c4;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    color:white;

    cursor:pointer;

    box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

/* contenedor */

.social-links{
    position:absolute;
    bottom:70px;
    left:0;

    display:flex;
    flex-direction:column;
    gap:10px;

    opacity:0;
    transform:translateY(20px);
    pointer-events:none;

    transition:0.3s;
}

.social-float.active .social-links{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
}

/* botones */

.social-btn{

    width:45px;
    height:45px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;
    text-decoration:none;
    font-size:12px;
    font-weight:600;

    box-shadow:0 6px 15px rgba(0,0,0,0.2);
}


.social-toggle{
    animation:pulse 2s infinite;
}

.social-float.active .social-btn{
    animation:subir .3s forwards;
}

.social-btn:nth-child(1){animation-delay:.05s}
.social-btn:nth-child(2){animation-delay:.1s}
.social-btn:nth-child(3){animation-delay:.15s}

@keyframes subir{
    from{
        transform:translateY(20px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}

@keyframes pulse{

    0%{box-shadow:0 0 0 0 rgba(32,196,196,0.6);}
    70%{box-shadow:0 0 0 15px rgba(32,196,196,0);}
    100%{box-shadow:0 0 0 0 rgba(32,196,196,0);}
}

/* colores */

.whatsapp{
    background:#25D366;
	font-size: 25px;
}

.facebook{
    background:#1877F2;
	font-size: 25px;
}

.instagram{
    background:#E4405F;
	font-size: 25px;
}


.toast-guardado{
    position:fixed;
    top:20px;
    right:20px;
    background:#198754;
    color:white;
    padding:12px 18px;
    border-radius:10px;
    font-size:14px;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
    opacity:0;
    transform:translateY(-20px);
    transition:all .35s ease;
    z-index:9999;
}

.toast-guardado.mostrar{
    opacity:1;
    transform:translateY(0);
}




.btn-cotizar-form{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.loader-btn{
    width:18px;
    height:18px;
    border:3px solid white;
    border-top:3px solid transparent;
    border-radius:50%;
    display:none;
}

.btn-cargando .loader-btn{
    display:inline-block;
    animation: spin 0.7s linear infinite;
}

.btn-cargando .texto-btn{
    opacity:0.7;
}

@keyframes spin{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

.footer {
    background-color: #222;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.footer-info p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-copy {
    margin-top: 20px;
    font-size: 13px;
    color: #aaa;
}