/* ═══════════════════════════════════════════════════
   DIA DE PRINCESA — SPA INFANTIL
   Design System & Styles
   ═══════════════════════════════════════════════════ */

/* ── Fonts ── */
@font-face {
    font-family: 'Alice';
    src: url('assets/fonts/Alice-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cretina';
    src: url('assets/fonts/Cretina-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ── CSS Custom Properties ── */
:root {
    --color-title:      #E6527A;
    --color-subtitle:   #825278;
    --color-text-1:     #A46A98;
    --color-text-2:     #B26A8D;
    --color-text-3:     #725858;

    --color-bg-white:   #FFFFFF;
    --color-bg-light:   #FFF5F8;
    --color-bg-section: #FDF0F4;
    --color-bg-accent:  #FCEAF0;

    --color-white:      #FFFFFF;
    --color-shadow:     rgba(230, 82, 122, 0.12);
    --color-shadow-lg:  rgba(130, 82, 120, 0.15);

    --font-title:   'Alice', Georgia, serif;
    --font-script:  'Cretina', cursive;
    --font-body:    'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-3);
    background-color: #FFFAFC;
    background-image:
        radial-gradient(circle at top left, rgba(230, 82, 122, 0.05) 0%, transparent 40%),
        radial-gradient(circle at bottom right, rgba(164, 106, 152, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ══════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px var(--color-shadow);
    padding: 8px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-img {
    height: 42px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo-img {
    height: 36px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text-3);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--color-title);
    background: var(--color-bg-accent);
}

.nav-cta {
    background: var(--color-title) !important;
    color: var(--color-white) !important;
    font-weight: 600;
    border-radius: var(--radius-lg) !important;
    padding: 10px 22px !important;
}

.nav-cta:hover {
    background: #d4446b !important;
    color: var(--color-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--color-shadow);
}

/* ── Hamburger ── */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--color-title);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

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

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

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

/* ══════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════ */
/* ── Global Background Decorations (clouds that float across entire site) ── */
.background-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.floating-nuvem {
    position: absolute;
    opacity: 0.7;
    filter: blur(1px);
    width: 300px;
    animation: floatAnimation 20s infinite ease-in-out alternate;
}

.nuvem-1 { top: 15%; left: -50px; }
.nuvem-2 { top: 45%; right: -80px; width: 450px; animation-duration: 25s; animation-delay: -5s; }
.nuvem-3 { bottom: 10%; left: 10%; width: 250px; animation-duration: 15s; animation-delay: -2s; opacity: 0.5; }

@keyframes floatAnimation {
    0%   { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-30px) translateX(20px); }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(170deg, rgba(255, 245, 248, 0.85) 0%, rgba(252, 234, 240, 0.7) 30%, rgba(253, 240, 244, 0.6) 60%, rgba(255, 249, 251, 0.5) 100%);
    padding: 120px 24px 60px;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-butterflies-left {
    position: absolute;
    left: 0;
    top: 5%;
    width: 22%;
    max-width: 260px;
    opacity: 0.85;
    filter: drop-shadow(0 5px 8px rgba(0,0,0,0.1));
    animation: flutter-left 12s ease-in-out infinite;
}

.hero-butterflies-right {
    position: absolute;
    right: 0;
    bottom: 5%;
    width: 22%;
    max-width: 260px;
    opacity: 0.85;
    filter: drop-shadow(0 5px 8px rgba(0,0,0,0.1));
    animation: flutter-right 14s ease-in-out infinite;
}

.hero-butterflies-left-2 {
    position: absolute;
    left: 8%;
    bottom: 20%;
    width: 14%;
    max-width: 160px;
    opacity: 0.5;
    animation: flutter-left 16s ease-in-out infinite 2s;
}

.hero-butterflies-right-2 {
    position: absolute;
    right: 8%;
    top: 15%;
    width: 14%;
    max-width: 160px;
    opacity: 0.5;
    animation: flutter-right 18s ease-in-out infinite 3s;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-logo {
    width: 100%;
    max-width: 440px;
}

.hero-illustration {
    width: 100%;
    max-width: 360px;
    filter: drop-shadow(0 8px 30px rgba(230, 82, 122, 0.15));
    animation: gentle-bounce 6s ease-in-out infinite;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-text-2);
    line-height: 1.6;
    max-width: 500px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-title);
    color: var(--color-white);
    box-shadow: 0 6px 24px rgba(230, 82, 122, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(230, 82, 122, 0.45);
    background: #d4446b;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-icon {
    width: 22px;
    height: 22px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid var(--color-title);
    color: var(--color-title);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--color-title);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--color-shadow);
}

/* ══════════════════════════════════════════════════
   SECTIONS — Common
   ══════════════════════════════════════════════════ */
.section {
    padding: 100px 24px;
    position: relative;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--color-title);
    text-align: center;
    line-height: 1.2;
    margin-top: -4px;
}

.section-subtitle {
    font-family: var(--font-script);
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: var(--color-subtitle);
    text-align: center;
    margin-bottom: 0;
    line-height: 1;
}

.section-divider {
    display: flex;
    justify-content: center;
    margin: 16px 0 28px;
}

.butterfly-divider {
    width: 50px;
    height: auto;
    opacity: 0.7;
    transition: var(--transition-slow);
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-text-1);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ── Section backgrounds (semi-transparent so global clouds show through) ── */
.sobre      { background: rgba(255, 255, 255, 0.75); }
.atividades { background: rgba(255, 245, 248, 0.8); }
.espaco     { background: rgba(255, 255, 255, 0.75); }
.como-funciona { background: rgba(255, 245, 248, 0.8); }
.localizacao   { background: rgba(255, 255, 255, 0.75); }
.contato {
    background: linear-gradient(170deg, rgba(252, 234, 240, 0.85) 0%, rgba(253, 244, 247, 0.8) 50%, rgba(255, 245, 248, 0.75) 100%);
    position: relative;
    overflow: hidden;
}

/* ══════════════════════════════════════════════════
   SOBRE
   ══════════════════════════════════════════════════ */
.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-top: 10px;
}

.sobre-text .section-subtitle,
.sobre-text .section-title {
    text-align: left;
}

.sobre-text .section-divider {
    justify-content: flex-start;
}

.sobre-text p {
    font-size: 1rem;
    color: var(--color-text-3);
    margin-bottom: 16px;
    line-height: 1.8;
}

.sobre-text p strong {
    color: var(--color-title);
    font-weight: 600;
}

.sobre-image {
    position: relative;
}

.sobre-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px var(--color-shadow-lg);
    transition: var(--transition-slow);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.sobre-image::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-bg-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    transition: var(--transition-slow);
}

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

.sobre-image:hover::before {
    top: -16px;
    right: -16px;
}

/* ══════════════════════════════════════════════════
   ATIVIDADES
   ══════════════════════════════════════════════════ */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.activity-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--color-shadow);
    transition: var(--transition);
    cursor: default;
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px var(--color-shadow-lg);
}

.activity-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

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

.activity-card:hover .activity-image img {
    transform: scale(1.08);
}

.activity-info {
    padding: 24px;
}

.activity-info h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--color-title);
    margin-bottom: 8px;
}

.activity-info p {
    font-size: 0.92rem;
    color: var(--color-text-3);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   GALERIA (NOSSO ESPAÇO)
   ══════════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 2px 12px var(--color-shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 28px var(--color-shadow-lg);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(130, 82, 120, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ── Lightbox ── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: lightbox-in 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightbox-img-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    opacity: 0.7;
    z-index: 10001;
}

.lightbox-close:hover {
    opacity: 1;
    transform: scale(1.15);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: white;
    background: rgba(255,255,255,0.1);
    border: none;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    opacity: 0.7;
    z-index: 10001;
}

.lightbox-nav:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ══════════════════════════════════════════════════
   COMO FUNCIONA (Timeline)
   ══════════════════════════════════════════════════ */
.timeline {
    position: relative;
    max-width: 600px;
    margin: 48px auto;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-bg-accent), var(--color-title), var(--color-subtitle), var(--color-bg-accent));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -50px;
    top: 0;
    width: 44px;
    height: 44px;
    background: var(--color-white);
    border: 3px solid var(--color-title);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px var(--color-shadow);
    z-index: 2;
}

.timeline-content {
    background: var(--color-white);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px var(--color-shadow);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 28px var(--color-shadow-lg);
}

.timeline-content h3 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--color-title);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--color-text-3);
    line-height: 1.6;
}

.como-funciona-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.como-funciona-images img {
    border-radius: var(--radius-md);
    box-shadow: 0 8px 28px var(--color-shadow-lg);
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: var(--transition);
}

.como-funciona-images img:hover {
    transform: scale(1.03);
}

/* ══════════════════════════════════════════════════
   LOCALIZAÇÃO
   ══════════════════════════════════════════════════ */
.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
    margin-top: 10px;
}

.localizacao-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.localizacao-address {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.localizacao-pin {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.localizacao-street {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--color-title);
    margin-bottom: 4px;
    font-weight: 600;
}

.localizacao-city {
    font-size: 1rem;
    color: var(--color-text-3);
}

.localizacao-cep {
    font-size: 0.9rem;
    color: var(--color-text-1);
    margin-top: 2px;
}

.localizacao-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 28px var(--color-shadow-lg);
}

.localizacao-map iframe {
    display: block;
}

/* ══════════════════════════════════════════════════
   CONTATO
   ══════════════════════════════════════════════════ */
.contato-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.contato-cloud {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    max-width: 500px;
    opacity: 0.2;
    transform: rotate(30deg);
}

.contato-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 640px;
    margin: 0 auto;
}

.contato-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px 32px;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: 0 6px 24px var(--color-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contato-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transition: var(--transition);
}

.whatsapp-card::before {
    background: linear-gradient(90deg, #25D366, #128C7E);
}

.instagram-card::before {
    background: linear-gradient(90deg, #833AB4, #E1306C, #F77737);
}

.contato-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px var(--color-shadow-lg);
}

.contato-card:hover::before {
    height: 6px;
}

.contato-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.contato-card:hover .contato-icon {
    transform: scale(1.12);
}

.contato-card h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--color-title);
    margin-bottom: 8px;
}

.contato-card p {
    font-size: 1rem;
    color: var(--color-text-3);
    margin-bottom: 16px;
}

.contato-card-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-title);
    transition: var(--transition);
}

.contato-card:hover .contato-card-cta {
    letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.footer {
    position: relative;
    background: linear-gradient(170deg, #825278 0%, #6B4668 50%, #5A3B58 100%);
    color: var(--color-white);
    text-align: center;
    padding: 80px 24px 40px;
    overflow: hidden;
}

.footer-butterflies {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.footer-butterflies-img {
    height: 100%;
    width: auto;
    opacity: 0.06;
    object-fit: cover;
}

.footer-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 180px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-social-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-social-icon:hover {
    opacity: 1;
    transform: scale(1.15) translateY(-2px);
}

.footer-address {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 8px;
}

/* ══════════════════════════════════════════════════
   WHATSAPP FLUTUANTE
   ══════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

/* ══════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════ */

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero fade in */
.animate-fade-in {
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cloud floating (kept for backwards compat, floatAnimation is primary) */

/* Butterfly flutter */
@keyframes flutter-left {
    0%, 100% { transform: translate(0, 0); }
    33%      { transform: translate(8px, -12px); }
    66%      { transform: translate(-5px, 8px); }
}

@keyframes flutter-right {
    0%, 100% { transform: translate(0, 0); }
    33%      { transform: translate(-10px, 10px); }
    66%      { transform: translate(6px, -8px); }
}

/* Gentle bounce for illustration */
@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* WhatsApp pulse */
@keyframes pulse-whatsapp {
    0%   { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
    50%  { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.15); }
    100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
}

/* Lightbox animations */
@keyframes lightbox-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes lightbox-img-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — TABLET (< 1024px)
   ══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .localizacao-info {
        align-items: center;
        text-align: center;
    }

    .localizacao-address {
        flex-direction: column;
        align-items: center;
    }

    .hero-butterflies-left,
    .hero-butterflies-right {
        width: 16%;
        opacity: 0.6;
    }

    .hero-butterflies-left-2,
    .hero-butterflies-right-2 {
        display: none;
    }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — MOBILE (< 768px)
   ══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* Nav mobile */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        padding: 14px 16px;
        font-size: 1.05rem;
        border-radius: var(--radius-sm);
    }

    .nav-cta {
        text-align: center;
        margin-top: 12px;
    }

    /* Mobile overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 998;
        animation: fadeIn 0.3s ease;
    }

    /* Hero */
    .hero {
        padding: 100px 20px 50px;
        min-height: auto;
    }

    .hero-logo {
        max-width: 280px;
    }

    .hero-illustration {
        max-width: 260px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 0.92rem;
    }

    .hero-butterflies-left,
    .hero-butterflies-right,
    .hero-butterflies-left-2,
    .hero-butterflies-right-2 {
        display: none;
    }

    .floating-nuvem {
        display: none;
    }

    /* Sections */
    .section {
        padding: 72px 20px;
    }

    /* Sobre */
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-text .section-subtitle,
    .sobre-text .section-title {
        text-align: center;
    }

    .sobre-text .section-divider {
        justify-content: center;
    }

    .sobre-image {
        order: -1;
        max-width: 340px;
        margin: 0 auto;
    }

    .sobre-image::before {
        display: none;
    }

    /* Activities */
    .activities-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Timeline */
    .timeline {
        padding-left: 44px;
    }

    .timeline::before {
        left: 18px;
    }

    .timeline-icon {
        left: -44px;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .timeline-content {
        padding: 20px;
    }

    /* Como funciona images */
    .como-funciona-images {
        grid-template-columns: 1fr;
        max-width: 340px;
    }

    /* Contato */
    .contato-cards {
        grid-template-columns: 1fr;
        max-width: 360px;
    }

    /* Lightbox */
    .lightbox {
        padding: 20px;
    }

    .lightbox-img {
        max-width: 95%;
        max-height: 75vh;
    }

    .lightbox-nav {
        font-size: 1.8rem;
        padding: 8px 14px;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }

    .lightbox-close {
        top: 12px;
        right: 16px;
        font-size: 2.4rem;
    }

    /* WhatsApp float */
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (< 480px)
   ══════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .hero-logo {
        max-width: 220px;
    }

    .hero-illustration {
        max-width: 220px;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-logo {
        width: 140px;
    }
}
