:root {
    --primary: #7ED9C3;
    --primary-light: #A5E6D8;
    --primary-dark: #5CB6A1;
    --secondary: #B2EBF2;
    --accent: #FFD54F;
    --text-main: #2D3748;
    --text-muted: #718096;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --whatsapp: linear-gradient(135deg, #7ED9C3 0%, #5CB6A1 100%);
    --btn-shadow: 0 10px 20px rgba(126, 217, 195, 0.3);
    --card-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* SVG Wave Dividers */
.wave-divider {
    display: block;
    width: 100%;
    line-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: #F7FAFC;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Bubble Background */
.bubble-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(180deg, #E0F7FA 0%, #FFFFFF 100%);
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(200, 240, 255, 0.45);
    border: 1.5px solid rgba(126, 217, 195, 0.7);
    border-radius: 50%;
    pointer-events: none;
    animation: float-up var(--duration) linear infinite;
    opacity: var(--opacity);
    box-shadow: inset -6px -6px 18px rgba(255, 255, 255, 0.7),
        inset 6px 6px 18px rgba(126, 217, 195, 0.4),
        0 0 8px rgba(126, 217, 195, 0.2);
}

@keyframes float-up {
    0% {
        transform: translateY(0) translateX(0);
        opacity: var(--opacity);
    }

    50% {
        transform: translateY(-50vh) translateX(20px);
        opacity: calc(var(--opacity) * 1.2);
    }

    100% {
        transform: translateY(-110vh) translateX(-20px);
        opacity: 0;
    }
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img,
.logo-img {
    height: 40px;
    width: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--primary-dark);
    background: rgba(126, 217, 195, 0.1);
}

.contact-info .phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.phone-icon {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: var(--text-muted);
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-mask {
    width: 450px;
    height: 450px;
    overflow: hidden;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 15px solid var(--white);
}

.image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.floating-duck {
    position: absolute;
    width: 80px;
    bottom: 20px;
    right: 30px;
    animation: bounce 3s ease-in-out infinite;
    z-index: 2;
    mix-blend-mode: multiply;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--btn-shadow);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, #90BEBB 0%, #76A5A2 100%);
    color: white;
    padding: 12px 30px;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: var(--primary);
}

.benefit-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    mix-blend-mode: multiply;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 30px;
    overflow: hidden;
    height: 350px;
    box-shadow: var(--card-shadow);
    border: 8px solid var(--white);
    transition: transform 0.5s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== Services Section ===== */
.services-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: -40px;
    margin-bottom: 50px;
}

.services-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.services-carousel {
    overflow: hidden;
    width: 100%;
    border-radius: 28px;
}

.carousel-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 28px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-img-wrap {
    flex: 0 0 55%;
    max-height: 420px;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.04);
}

.service-info {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #A5E6D8, #7ED9C3);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
    letter-spacing: .5px;
    width: fit-content;
}

.service-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.service-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.carousel-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--primary-dark);
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-dot.active {
    background: var(--primary-dark);
    transform: scale(1.3);
}

/* Responsive Services */
@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
    }

    .service-img-wrap {
        flex: 0 0 auto;
        max-height: 250px;
    }

    .service-info {
        padding: 30px 25px;
    }

    .service-info h3 {
        font-size: 1.5rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Unified Footer Section */

.unified-footer {
    padding: 50px 0 30px;
    text-align: center;
    position: relative;
    background: rgba(235, 248, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(126, 217, 195, 0.3);
}

.cta-footer-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content {
    margin-top: 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.footer-contact-block {
    margin-top: 40px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    list-style: none;
    font-weight: 500;
}

.contact-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.contact-grid .contact-icon {
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.deco-assets-footer {
    margin-top: 120px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.deco-assets-footer .deco-asset {
    opacity: 0.9;
    mix-blend-mode: multiply;
    /* Removes white background */
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.deco-bottle-pacifier {
    width: 120px;
    top: 130px;
    left: 8%;
    transform: rotate(-15deg);
}

.deco-bear {
    width: 160px;
    top: 110px;
    right: 10%;
    transform: rotate(10deg);
}

.deco-shoes {
    width: 100px;
    top: 140px;
    right: 4%;
    transform: rotate(-10deg);
}

.footer-bottom-bar {
    margin-top: 30px;
    padding-top: 20px;
    padding-bottom: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.dev-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.dev-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .image-mask {
        width: 100%;
        max-width: 350px;
        height: 350px;
    }

    .reservation-cta h2 {
        font-size: 2.2rem;
    }

    .deco-asset {
        display: none;
    }
}