/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1f1f1f;
    --accent-pink: #ffe4e1;
    /* MistyRose - um rosa bem fraquinho e elegante */
    --accent-gold: #c5a059;
    /* Toque de ouro para luxo */
    --text-light: #f9f9f9;
    --text-dark: #333333;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Brilhos flutuantes */
.sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-pink);
    border-radius: 50%;
    opacity: 0;
    animation: sparkleFloat 8s infinite ease-in-out;
    box-shadow: 0 0 10px var(--accent-pink), 0 0 20px var(--accent-pink);
}

@keyframes sparkleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
        transform: translateY(-100vh) scale(1.5);
    }
}



h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header */
header {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 0.2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 228, 225, 0.1);
}

.logo img {
    height: 120px !important;
    width: auto !important;
    max-width: none;
    /* Ensure flex container doesn't shrink it */
    filter: drop-shadow(0 0 8px rgba(255, 228, 225, 0.6));
    /* Removemos a inversão para mostrar a cor original (rosa) */
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    /* Efeito de zoom suave ao passar o mouse */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-pink);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--accent-pink);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    /* Imagem genérica spa/estética elegante */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0 1rem;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-pink);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-weight: 300;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-pink);
    color: var(--primary-black);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--accent-pink);
    transition: var(--transition);
}

.btn:hover {
    background-color: transparent;
    color: var(--accent-pink);
}

/* Services */
.services {
    padding: 5rem 5%;
    background-color: var(--secondary-black);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--accent-pink);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    animation: fadeInDown 0.8s ease-out forwards;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-pink);
    margin: 10px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--primary-black);
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 228, 225, 0.05);
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1).animate {
    animation-delay: 0.1s;
}

.service-card:nth-child(2).animate {
    animation-delay: 0.2s;
}

.service-card:nth-child(3).animate {
    animation-delay: 0.3s;
}

.service-card:nth-child(4).animate {
    animation-delay: 0.4s;
}

.service-card:nth-child(5).animate {
    animation-delay: 0.5s;
}

.service-card:nth-child(6).animate {
    animation-delay: 0.6s;
}

.service-card:nth-child(7).animate {
    animation-delay: 0.7s;
}

.service-card:nth-child(8).animate {
    animation-delay: 0.8s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-pink);
}

/* Animações suaves */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-pink);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 228, 225, 0.5));
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card p {
    color: #aeaeae;
    font-size: 0.95rem;
}

/* About */
.about {
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    background-color: var(--primary-black);
}

.about-image {
    flex: 1 1 500px;
    max-width: 600px;
}

.about-image img {
    border-radius: 2px;
    transition: var(--transition);
    border: 1px solid var(--accent-pink);
    width: 100%;
}

.about-text {
    flex: 1 1 400px;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--accent-pink);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

/* Contact / Footer */
footer {
    background-color: #000;
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid #222;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info h3 {
    color: var(--accent-pink);
    margin-bottom: 1rem;
}

.contact-links a {
    margin: 0 10px;
    font-size: 1.2rem;
    color: #fff;
}

.contact-links a:hover {
    color: var(--accent-pink);
}

.copyright {
    font-size: 0.8rem;
    color: #666;
    margin-top: 2rem;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--accent-pink);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 768px) {

    /* Header Mobile */
    header {
        padding: 0.8rem 4%;
    }

    .logo img {
        height: 80px !important;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 65%;
        max-width: 280px;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.98);
        padding: 80px 1.2rem 1.5rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255, 228, 225, 0.1);
        backdrop-filter: blur(10px);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0.8rem;
    }

    nav a {
        font-size: 0.85rem;
        display: block;
        padding: 0.5rem 0.8rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    nav a:hover {
        background: rgba(255, 228, 225, 0.1);
        padding-left: 1.2rem;
    }


    /* Hero Mobile */
    .hero {
        padding: 0 1.5rem;
        background-attachment: scroll;
    }

    .hero-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    /* Services Mobile */
    .services {
        padding: 3rem 5%;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    /* About Mobile */
    .about {
        padding: 3rem 5%;
        flex-direction: column;
    }

    .about-image {
        flex: 1 1 100%;
    }

    .about-text {
        flex: 1 1 100%;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    /* Footer Mobile */
    footer {
        padding: 2rem 5%;
    }

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

    .contact-links a {
        font-size: 1.5rem;
        margin: 0 15px;
    }

    /* Internal Pages Mobile */
    .page-header {
        padding: 150px 5% 80px;
        min-height: 50vh;
        background-attachment: scroll;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .story-content {
        padding: 3rem 5%;
    }

    .story-block {
        margin-bottom: 3rem;
    }

    .story-block h2 {
        font-size: 1.8rem;
    }

    .story-block p {
        font-size: 0.95rem;
    }

    .mission-quote {
        font-size: 1.1rem;
        padding-left: 1rem;
    }

    .cta-section {
        padding: 3rem 5%;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h2 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.2rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    header {
        padding: 0.8rem 4%;
    }

    .logo img {
        height: 50px !important;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .story-block h2 {
        font-size: 1.5rem;
    }

    nav {
        width: 70%;
        max-width: 260px;
    }
}

/* Internal Pages Styling */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    text-align: center;
    padding: 200px 5% 120px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-header h1 {
    color: var(--accent-pink);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.page-header p {
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 300;
}

.story-content {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-light);
    background-color: var(--primary-black);
}

.story-block {
    margin-bottom: 5rem;
}

.story-block h2 {
    color: var(--accent-pink);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.story-block p {
    margin-bottom: 1.5rem;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.8;
}

.story-image {
    width: 100%;
    border-radius: 2px;
    border: 1px solid var(--accent-pink);
    padding: 10px;
    transition: var(--transition);
}

.story-image:hover {
    transform: scale(1.02);
}

.mission-quote {
    border-left: 4px solid var(--accent-pink);
    padding-left: 2rem;
    font-style: italic;
    margin-top: 2rem;
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    background-color: var(--secondary-black);
    text-align: center;
    padding: 5rem 5%;
    border-top: 1px solid rgba(255, 228, 225, 0.1);
}

.cta-section h2 {
    color: var(--accent-pink);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.cta-section p {
    margin-bottom: 2rem;
    color: #ccc;
    font-size: 1rem;
}

/* Estilo para link ativo no menu */
nav a.active {
    color: var(--accent-pink);
}

nav a.active::after {
    width: 100%;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
    animation: waPulse 2.5s infinite;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
    color: #fff;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: #25D366;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'Lato', sans-serif;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
    }
}

/* ===================================
   SPA KIDS - DESTAQUE ESPECIAL
   =================================== */

.spa-kids-section {
    position: relative;
    margin: 60px auto 0;
    max-width: 900px;
    background: linear-gradient(135deg, rgba(255, 228, 225, 0.06) 0%, rgba(197, 160, 89, 0.04) 100%);
    border: 1px solid rgba(255, 228, 225, 0.25);
    border-radius: 28px;
    padding: 48px;
    overflow: hidden;
}

.spa-kids-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-gold), var(--accent-pink));
}

.spa-kids-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-gold));
    color: #1a0a09;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.spa-kids-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.spa-kids-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 228, 225, 0.08);
    border: 1px solid rgba(255, 228, 225, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--accent-pink);
}

.spa-kids-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.spa-kids-text p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .spa-kids-section {
        padding: 32px 24px;
        margin: 40px 16px 0;
    }

    .spa-kids-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .spa-kids-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .spa-kids-text h3 {
        font-size: 24px;
    }
}