/* =============================== */
/* AJUSTES GENERALES */
/* =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Fredoka", sans-serif;
    background: #fff7fb;
    color: #333;
}

h1, h2, h3 {
    font-weight: 700;
}

img {
    max-width: 100%;
}

/* =============================== */
/* ANIMACIONES GLOBALES */
/* =============================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 1s;
}

.reveal-delay-3 {
    transition-delay: 2s;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}


/* =============================== */
/* NAVBAR */
/* =============================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    padding: 18px 0;
    box-shadow: 0 4px 12px #00000015;
    z-index: 1000;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #ff4d6d;
    text-decoration: none;
}

.nav-links a {
    position: relative;
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
    color: #444;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 3px;
    background: #ff4d6d;
    border-radius: 2px;
    transition: 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #ff4d6d;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 27px;
    height: 3px;
    margin: 5px;
    background: #444;
    border-radius: 5px;
}

/* BOTÓN WHATSAPP EN NAVBAR */
.nav-ws-btn {
    background: #ff4d6d;
    color: white !important;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease;
    text-decoration: none !important;
}

.nav-ws-btn:hover {
    background: #ff4d6d;
    transform: translateY(-2px);
    text-decoration: none !important;
}

.nav-ws-btn:hover::after {
    display: none !important;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}


/* MOBILE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        width: 100%;
        position: absolute;
        top: 75px;
        left: 0;
        padding: 20px 0;
        box-shadow: 0 4px 12px #00000025;
    }

    .logo img {
        height: 40px;
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .nav-ws-btn {
        display: flex;
        justify-content: center;
        width: 50%;
        margin: 10px auto;
        font-size: 15px;
        padding: 8px 10px; 
    }
}

/* =============================== */
/* HERO VIDEO */
/* =============================== */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vb; 
    padding-top: 80px; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: black;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000055;
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 52px;
}

.btn-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #ff4d6d;
    color: white;
    border-radius: 12px;
    font-size: 20px;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {

    .hero-section {
        height: 100svh;
        padding-top: 70px;
    }

    .hero-content h1 {
        font-size: 34px;
    }
}

/* =============================== */
/* INFLABLES DESTACADOS */
/* =============================== */
.destacados {
    padding: 80px 0;
    text-align: center;
}

.destacados h2 {
    font-size: 36px;
    color: #ff4d6d;
    margin-bottom: 40px;
}

.destacados-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Marco fijo para que TODAS las imágenes sean del mismo tamaño */
.card-img {
    width: 100%;
    aspect-ratio: 4 / 3; /* ← controla el alto/forma */
    overflow: hidden;
    border-radius: 18px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ← SAME SIZE + recorte bonito */
    object-position: center;
}

.inflable-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 12px #00000015;
    transition: 0.3s;
}

.inflable-card:hover {
    transform: scale(1.03);
}

.inflable-card h3 {
    font-size: 22px;
    margin-top: 15px;
    color: #6a00f4;
}

.medidas {
    margin-top: 5px;
    color: #777;
}

.precio {
    display: inline-block;
    margin-top: 10px;
    background: #ffd93d;
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: bold;
}

/* Botón "ver a detalle" */
.btn-detalle {
    display: inline-block;
    margin-top: 15px;
    background: #6a00f4;
    color: white;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
}

.btn-detalle:hover {
    background: #5300c7;
}

/* Botón ver catálogo */
.btn-todo-catalogo {
    display: inline-block;
    margin-top: 40px;
    background: #ff4d6d;
    color: white;
    padding: 14px 25px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-todo-catalogo:hover {
    background: #d93a55;
}

/* MOBILE */
@media (max-width: 768px) {
    .destacados-grid {
        grid-template-columns: 1fr;
    }

    .btn-todo-catalogo {
        margin-top: 30px;
    }
}



/* =============================== */
/* DIVIÉRTETE CON NOSOTROS */
/* =============================== */

.diviertete {
    padding: 80px 0;
    background: #fff3ff;
}

.div-row {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.div-text {
    flex: 1;
}

.div-text h2 {
    font-size: 38px;
    color: #ff4d6d;
    margin-bottom: 20px;
}

.div-text p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.div-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.div-image img {
    width: 100%;
    max-width: 480px;

}

/* ==== MOBILE ==== */
@media (max-width: 768px) {
    .div-row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .div-text h2 {
        font-size: 30px;
    }

    .div-text p {
        font-size: 18px;
        text-align: justify;
    }
}


/* =============================== */
/* POR QUÉ ELEGIRNOS */
/* =============================== */
.elegirnos {
    padding: 80px 0;
    background: #ffe8ff;
    text-align: center;
}

.elegirnos h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #ff4d6d;
}

.elegirnos-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.reason-card {
    background: white;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 4px 12px #00000015;
}

.reason-card h3 {
    margin: 10px 0;
    color: #6a00f4;
}

.reason-icon {
    font-size: 48px;
    color: #ff4d6d;
    margin-bottom: 10px;
}


/* MOBILE */
@media (max-width: 768px) {
    .elegirnos-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =============================== */
/* INFORMACIÓN IMPORTANTE */
/* =============================== */

.info {
    padding: 90px 0;
    background: #fff7fb;
}

.info-row {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

/* IZQUIERDA */
.info-left {
    flex: 1;
}

.info-left h2 {
    font-size: 36px;
    color: #ff4d6d;
    margin-bottom: 25px;
}

.info-left ul {
    list-style: none;
}

.info-left li {
    font-size: 20px;
    margin-bottom: 14px;
    color: #555;
    line-height: 1.6;
}

/* DERECHA (CUADRO) */
.info-box {
    flex: 1;
    background: #ffffff;
    padding: 30px 30px 40px;
    border-radius: 20px;
    box-shadow: 0 6px 20px #00000015;
    text-align: left;
}

.info-box h3 {
    font-size: 26px;
    color: #6a00f4;
    margin-bottom: 20px;
}

.info-item {
    font-size: 18px;
    margin-bottom: 18px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    color: #ff4d6d;
    font-size: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
    .info-row {
        flex-direction: column;
        text-align: center;
    }

    .info-box {
        text-align: center;
    }

    .info-item {
        justify-content: center;
    }
}

/* =============================== */
/* MINI SECCIÓN DE CONTACTO */
/* =============================== */

.mini-contacto {
    padding: 80px 0;
    background: #ffe9ff;
}

.contacto-row {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* LADO IZQUIERDO */
.contacto-info {
    flex: 1;
}

.contacto-info h2 {
    font-size: 34px;
    color: #ff4d6d;
    margin-bottom: 25px;
}

.contacto-info p {
    font-size: 20px;
    margin-bottom: 15px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    font-size: 24px;
    color: #ff4d6d;
}

/* LADO DERECHO MAPA */
.contacto-mapa {
    flex: 1;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px #00000020;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    margin-bottom: 15px;
    color: #444;
    text-decoration: none;
    transition: 0.2s;
}

.contact-link:hover {
    color: #ff4d6d;
    transform: translateX(4px);
}


/* MOBILE */
@media (max-width: 768px) {
    .mini-contacto {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contacto-row {
        flex-direction: column;
        text-align: center;
    }

    .contacto-info p,
    .contact-link {
        max-width: 100%;
        width: 100%;
        text-align: center;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        justify-content: flex-start;
    }

    .contact-link strong {
        display: none;
    }

    .contacto-info p,
    .contact-link {
        text-align: left;
        font-size: 18px;
    }

    .contacto-mapa {
        width: 100%;
        height: 260px;
        margin: 0;
        padding: 0;
        display: block;
    }
}


/* =============================== */
/* FOOTER */
/* =============================== */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 25px 0;
    font-size: 16px;
}

.footer .creditos {
    margin-top: 5px;
    font-size: 15px;
    color: #cccccc;
}

.footer .creditos a {
    color: #ff4d6d;
    text-decoration: none;
}

.footer .creditos a:hover {
    text-decoration: underline;
}

.footer-top {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto 30px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    text-align: left;
}

.footer-logo {
    font-size: 24px;
    color: #ff4d6d;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-desc {
    color: #cccccc;
    line-height: 1.6;
    max-width: 350px;
}

.footer-right {
    text-align: left;
}

.footer-contact {
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-contact i {
    color: #ff4d6d;
    width: 20px;
    text-align: center;
}

.footer-contact:hover {
    color: #ffd93d;
    transform: translateX(4px);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #555;
    margin: 25px 0;
}

.footer-logo img {
    height: 55px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}


/* =============================== */
/* RESPONSIVE */
/* =============================== */
@media (max-width: 768px) {
    .footer-logo {
        text-align: center;
        width: 100%;
    }

    .footer-logo img {
        margin: auto;
        display: block;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-right {
        text-align: center;
    }

    .footer-contact {
        justify-content: center;
    }
}

/* =============================== */
/* BURBUJA FLOTANTE WHATSAPP */
/* =============================== */
.ws-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 999;
    box-shadow: 0 6px 15px #00000040;
    transition: 0.3s ease;
    text-decoration: none !important;
}

.ws-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}
