/* =========================
   FUENTES
========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

/* =========================
   VARIABLES GLOBALES
========================= */
:root {
    --primary-color: #FC67C1;
    --secundary-color: #FF96D5;
    --teritary-color: #fbd1da;
    --bg-1: #ffffff;
    --text-1: #000;
    --texto-2: #626262;

    --fs-h1: clamp(2.2rem, 5vw, 3.8rem);
    --fs-h2: clamp(1.8rem, 4vw, 3rem);
    --fs-h3: clamp(1.5rem, 3vw, 2.4rem);
    --fs-h4: clamp(1.3rem, 2.5vw, 2rem);
    --fs-h5: clamp(1.1rem, 2vw, 1.6rem);
    --fs-h6: clamp(1rem, 1.5vw, 1.3rem);
    --fs-p: clamp(1rem, 1.4vw, 1.4rem);
    --fs-small: clamp(0.85rem, 1.2vw, 0.95rem);
}

/* =========================
   RESET + BASE
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-center {
    text-align: center;
}

.title {
    font-family: "Pacifico";
    font-size: var(--fs-h2);
    margin: 16px 0 24px;
}

/* =========================
   BOTONES
========================= */
.btn,
.hero-btn,
.btn-card,
.footer-btn {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 16px;
    transition: transform .2s ease, filter .2s ease;
}

.btn {
    padding: 8px 16px;
    font-size: 1.2rem;
}

.btn:hover,
.btn-card:hover,
.footer-btn:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px var(--secundary-color));
}

/* =========================
   NAVBAR
========================= */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Montserrat";
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1), opacity .4s ease;
    z-index: 1000;
}

.navbar-container.show {
    transform: translateY(0);
    opacity: 1;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
}

.logo-mamiringa {
    width: 120px;
}

.toggle-menu {
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-size: 3rem;
    cursor: pointer;
    transition: transform .2s ease;
}

.toggle-menu:hover {
    transform: scale(1.08);
}

.nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 16px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: .25s ease;
}

.nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-item {
    text-decoration: none;
    color: var(--text-1);
    font-size: 1.1rem;
    transition: transform .1s ease;
}

.nav-item:hover {
    transform: scale(1.05);
}

/* Desktop navbar */
@media (min-width:900px) {
    .toggle-menu {
        display: none;
    }

    .nav-links {
        position: static;
        flex-direction: row;
        align-items: center;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        background: transparent;
    }
}

/* =========================
   HERO
========================= */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: 100svh;
    }
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    filter: brightness(.5);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}

.hero-logo {
    width: 320px;
    background: #fff;
    padding: 16px;
    border-radius: 24px;
    opacity: 0;
    transform: translateY(-40px);
    transition: .8s ease;
}

.hero-text {
    font-family: "Poppins";
    opacity: 0;
    transform: translateY(40px);
    transition: .8s ease;
    text-align: center;
}

.hero-overlay.active .hero-logo,
.hero-overlay.active .hero-text {
    opacity: 1;
    transform: translateY(0);
}

.hero-slogan {
    color: #fff;
    font-size: var(--fs-h2);
}

.hero-message {
    color: #fff;
    font-size: var(--fs-p);
    font-weight: bold;
}

.hero-btn {
    font-size: var(--fs-h4);
    padding: 16px;
    transition: .2s;
}



/* Desktop hero */

@media (min-width:900px) {
    .hero-overlay {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 10%;
        text-align: left;
    }

    .hero-logo {
        width: 450px;
        transform: translateX(-150px);
    }

    .hero-text {
        transform: translateX(150px);
        align-items: center;
    }

    .hero-overlay.active .hero-logo,
    .hero-overlay.active .hero-text {
        transform: translateX(0);
    }
}

/* =========================
   SERVICIOS / CARDS
========================= */

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.card {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .25);
    position: relative;
    text-align: center;
}

.card-price {
    position: absolute;
    top: -50px;
    right: 10px;
    background: var(--secundary-color);
    padding: .5rem;
    border-radius: 12px;
    font-size: var(--fs-h4);
    font-weight: bold;
}

.card-img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.card-title {
    font-family: "Pacifico";
    font-size: var(--fs-h3);
    margin: 0;
}

.card-description {
    font-size: 1rem;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.Card-list-item {
    font-size: 1rem;
}

.card-special-caracter {
    font-weight: bold;
    font-style: italic;
}

.btn-card {
    margin-top: auto;
    padding: 8px;
    font-family: "Montserrat";
    color: white;
}

/* =========================
   UBICACIÓN
========================= */
.ubicacion {
    display: grid;
    gap: 2rem;
    padding: 2rem;
    background: var(--secundary-color);
}

@media (min-width:900px) {
    .ubicacion {
        grid-template-columns: 1fr 1fr;
    }
}

.map {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

iframe,
.video-container video {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .3);
}

.google-link {
    background: rgb(244, 101, 101);
    padding: 16px;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

/* =========================
   COMENTARIOS
========================= */

.comments {
    margin-bottom: 3rem;
}

.comments-title {
    margin-bottom: 5rem;
}

.comment-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
}

.comment {
    width: 400px;
    min-height: 350px;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, .35);
    position: relative;
    font-family: "Montserrat";
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-img {
    width: 90px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    right: 20px;
}

.comment-name {
    font-weight: bold;
}

.comment-date {
    font-style: italic;
    color: var(--texto-2);
}

/* Mobile fix comentarios */
@media (max-width:390px) {
    .comment {
        width: 90%;
    }

    .hero-logo {
        width: 260px;
    }
}

/* =========================
   FOOTER
========================= */
.main-footer {
    background: var(--primary-color);
    color: #fff;
    font-family: "Montserrat";
    padding: 2rem;
    justify-content: center;
}

.footer-container {
    display: grid;
    gap: 3rem;
    text-align: center;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-title {
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.logo-footer {
    width: 200px;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
}

.redes {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 75px;
    border-radius: 50%;
    transition: transform .3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: inherit;
    text-decoration: none;
    opacity: .8;
}

.footer-section ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.contact-item {
    display: flex;
    gap: 10px;
    align-items: center;
    text-align: center;
}

.email,
.icon {
    font-size: 1rem;
}

.phone-number {
    font-size: 1.6rem;
}

.footer-btn {
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
}

.footer-bottom {
    text-align: center;
}

.vridSign {
    color: inherit;
    text-decoration: none;
}

.footer-nav {
    font-size: var(--fs-h4);
}

/* Desktop footer */
@media (min-width:900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        text-align: left;
    }

    .footer-section {
        align-items: center;
    }

    .footer-title::after {
        left: 0;
        transform: none;
    }
}