/* ===================================
   DESIGN SYSTEM & CSS VARIABLES
   =================================== */

:root {
    /* Color Palette - Matching Logo Colors */
    --primary-hue: 220;
    /* Azul vibrante do logo */
    --secondary-hue: 20;
    /* Laranja/terracota do logo */
    --accent-hue: 340;
    /* Rosa/vermelho dos corações */

    --primary-50: hsl(var(--primary-hue), 100%, 97%);
    --primary-100: hsl(var(--primary-hue), 100%, 92%);
    --primary-200: hsl(var(--primary-hue), 100%, 85%);
    --primary-300: hsl(var(--primary-hue), 95%, 75%);
    --primary-400: hsl(var(--primary-hue), 90%, 65%);
    --primary-500: hsl(var(--primary-hue), 85%, 55%);
    --primary-600: hsl(var(--primary-hue), 80%, 45%);
    --primary-700: hsl(var(--primary-hue), 75%, 35%);

    --secondary-50: hsl(var(--secondary-hue), 100%, 97%);
    --secondary-100: hsl(var(--secondary-hue), 95%, 90%);
    --secondary-200: hsl(var(--secondary-hue), 90%, 80%);
    --secondary-300: hsl(var(--secondary-hue), 85%, 70%);
    --secondary-400: hsl(var(--secondary-hue), 80%, 60%);
    --secondary-500: hsl(var(--secondary-hue), 75%, 50%);
    --secondary-600: hsl(var(--secondary-hue), 70%, 40%);

    --accent-50: hsl(var(--accent-hue), 100%, 95%);
    --accent-100: hsl(var(--accent-hue), 100%, 85%);
    --accent-200: hsl(var(--accent-hue), 95%, 75%);
    --accent-300: hsl(var(--accent-hue), 90%, 65%);
    --accent-400: hsl(var(--accent-hue), 85%, 55%);
    --accent-500: hsl(var(--accent-hue), 80%, 50%);

    /* Neutral Colors */
    --neutral-50: hsl(220, 20%, 98%);
    --neutral-100: hsl(220, 15%, 95%);
    --neutral-200: hsl(220, 13%, 90%);
    --neutral-300: hsl(220, 12%, 80%);
    --neutral-400: hsl(220, 10%, 60%);
    --neutral-500: hsl(220, 8%, 45%);
    --neutral-600: hsl(220, 10%, 30%);
    --neutral-700: hsl(220, 12%, 20%);
    --neutral-800: hsl(220, 15%, 12%);
    --neutral-900: hsl(220, 18%, 8%);

    /* Semantic Colors */
    --success: hsl(142, 76%, 45%);
    --warning: hsl(38, 92%, 50%);
    --error: hsl(0, 84%, 60%);
    --info: hsl(210, 100%, 56%);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-400) 0%, var(--primary-600) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-400) 0%, var(--secondary-600) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-300) 0%, var(--accent-500) 100%);
    --gradient-rainbow: linear-gradient(135deg,
            hsl(220, 85%, 60%) 0%,
            hsl(200, 75%, 55%) 25%,
            hsl(20, 70%, 60%) 50%,
            hsl(340, 80%, 65%) 75%,
            hsl(280, 75%, 60%) 100%);

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Fredoka', 'Outfit', sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius - making it MORE bubbly */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-3xl: 3.5rem;
    --radius-full: 9999px;

    /* Playful Colors */
    --playful-yellow: hsl(48, 100%, 65%);
    --playful-blue: hsl(199, 89%, 69%);
    --playful-green: hsl(145, 63%, 62%);
    --playful-pink: hsl(340, 82%, 74%);

    /* Shadows */
    --shadow-sm: 0 4px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
    --shadow-colored: 0 20px 40px -10px hsla(var(--primary-hue), 85%, 55%, 0.3);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-slow: 450ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Container */
    --container-max-width: 1280px;
    --container-padding: var(--space-6);
}

/* ===================================
   CHILDISH DECORATIONS
   =================================== */

.cloud-divider {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 5;
    pointer-events: none;
    line-height: 0;
}

.cloud-divider.bottom {
    bottom: -1px;
}

.cloud-divider.top {
    top: -1px;
    transform: rotate(180deg);
}

.cloud-divider svg {
    display: block;
    width: 100%;
    height: auto;
}

.sun-decoration {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 5rem;
    animation: rotateSun 20s linear infinite;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(255, 230, 0, 0.3));
}

@keyframes rotateSun {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.doodle-bg {
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M10,10 Q20,0 30,10 T50,10" stroke="%23f1f5f9" fill="none" stroke-width="2"/><circle cx="80" cy="20" r="3" fill="%23f1f5f9"/><path d="M20,80 L30,90 L40,80" stroke="%23f1f5f9" fill="none" stroke-width="2"/></svg>');
}

/* ===================================
   RESET & BASE STYLES
   =================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-display);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--neutral-700);
    background-color: var(--neutral-50);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.gradient-text {
    background: var(--gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blue-text {
    color: #0000ff;
}

/* ===================================
   NAVIGATION - Playful Marshmallow Model
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: var(--shadow-md);
    padding: var(--space-1) 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--neutral-800);
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: var(--text-3xl);
    animation: bounce 2s infinite;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: transform var(--transition-base);
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.logo-text-blue {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: hsl(220, 85%, 50%);
    margin-top: -5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.nav-link {
    font-weight: 700;
    color: var(--neutral-700);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    transition: all var(--transition-bounce);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 3px solid transparent;
}

/* Color tabs on hover - Playful palette */
.nav-link:nth-child(1):hover {
    background: var(--playful-blue);
    color: white;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-link:nth-child(2):hover {
    background: var(--playful-yellow);
    color: white;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-link:nth-child(3):hover {
    background: var(--playful-green);
    color: white;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-link:nth-child(4):hover {
    background: var(--playful-pink);
    color: white;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-link:nth-child(5):hover {
    background: var(--primary-300);
    color: white;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-link:nth-child(6):hover {
    background: var(--secondary-300);
    color: white;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.nav-link.active {
    background: var(--primary-500);
    color: white !important;
    box-shadow: 0 4px 12px hsla(var(--primary-hue), 85%, 55%, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-link::after {
    display: none;
}

.btn-login {
    padding: var(--space-3) var(--space-6);
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--neutral-700);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-200), transparent);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--secondary-200), transparent);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-200), transparent);
    bottom: 10%;
    left: 15%;
    animation-delay: 4s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--primary-300), transparent);
    top: 30%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -20px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    75% {
        transform: translate(20px, 20px) scale(1.05);
    }
}

/* ===================================
   BANNERS CAROUSEL
   =================================== */

.banners-section {
    margin-top: 83px;
    /* Exatamente a altura do menu para ficar rente (16px + 50px + 16px + 1px border) */
    position: relative;
    overflow: hidden;
    width: 100%;
}

.banners-carousel-container {
    position: relative;
    width: 100%;
}

.banners-track {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: calc(100vh - 83px);
    /* Ajusta a altura da tela menos o menu */
    min-height: 600px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Toggle images based on device screen */
.banner-slide .banner-img-mobile {
    display: none !important;
}

.banner-slide .banner-img-desktop {
    display: block !important;
}

@media (max-width: 768px) {
    .banner-slide .banner-img-desktop {
        display: none !important;
    }

    .banner-slide .banner-img-mobile {
        display: block !important;
    }

    .banners-track {
        height: 60vh;
        /* Banner mais alto no mobile para fotos verticais */
        min-height: 400px;
    }
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    z-index: 10;
    color: var(--neutral-700);
}

.banner-nav:hover {
    background: white;
    color: var(--primary-600);
    transform: translateY(-50%) scale(1.1);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-2);
    z-index: 10;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid white;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-indicator.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

.banner-indicator:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    padding: var(--space-12) 0;
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: 800;
    line-height: 1.1;
    color: var(--neutral-800);
    margin-bottom: var(--space-6);
}

.hero-title span:first-child {
    color: var(--primary-600);
}

.blue-text {
    color: #0000ff !important;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--neutral-600);
    margin-bottom: var(--space-8);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--text-lg);
    transition: all var(--transition-bounce);
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px -10px hsla(var(--primary-hue), 85%, 55%, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-600);
    border: 3px solid var(--primary-200);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--primary-50);
    border-color: var(--primary-400);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-xl);
}

.hero-image {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) rotate(5deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 12px solid white;
    transform: rotate(-2deg);
    transition: transform var(--transition-bounce);
}

.hero-image-container:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-2xl);
}

.hero-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: #ffffff;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-weight: 600;
    animation: fadeInScale 0.6s ease-out backwards;
}

.badge-1 {
    top: 10%;
    right: -10px;
    animation-delay: 0.3s;
}

.badge-2 {
    bottom: 30%;
    left: -10px;
    animation-delay: 0.5s;
}

.badge-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 0.7s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.badge-icon {
    font-size: var(--text-2xl);
}

.badge-text {
    color: var(--neutral-700);
    font-size: var(--text-sm);
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features {
    padding: var(--space-24) 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: var(--space-4);
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--neutral-600);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
}

.feature-card {
    padding: var(--space-8);
    background: white;
    border: 3px solid var(--neutral-100);
    border-radius: var(--radius-3xl);
    transition: all var(--transition-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card:nth-child(1) {
    border-color: var(--playful-blue);
}

.feature-card:nth-child(2) {
    border-color: var(--playful-yellow);
}

.feature-card:nth-child(3) {
    border-color: var(--playful-green);
}

.feature-card:nth-child(4) {
    border-color: var(--playful-pink);
}

.feature-card:nth-child(5) {
    border-color: var(--primary-300);
}

.feature-card:nth-child(6) {
    border-color: var(--secondary-300);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 4.5rem;
    margin-bottom: var(--space-4);
    display: inline-block;
    transition: transform var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.feature-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: var(--space-3);
}

.feature-description {
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: var(--space-24) 0;
    background: var(--gradient-rainbow);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="white" opacity="0.2"/></svg>');
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-4);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-size: var(--text-xl);
    color: white;
    margin-bottom: var(--space-8);
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-600);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* ===================================
   TESTIMONIALS CAROUSEL
   =================================== */

.testimonials-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-16);
}

.testimonials-track {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-xl);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-stars {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

.testimonial-text {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--neutral-700);
    font-style: italic;
    margin-bottom: var(--space-8);
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-200);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
}

.author-name {
    font-weight: 600;
    color: var(--neutral-900);
    font-size: var(--text-lg);
}

.author-role {
    color: var(--neutral-600);
    font-size: var(--text-sm);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    z-index: 10;
    color: var(--primary-600);
}

.carousel-btn:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-top: var(--space-8);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neutral-300);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.indicator.active {
    background: var(--primary-600);
    width: 32px;
    border-radius: 6px;
}

.indicator:hover {
    background: var(--primary-400);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: linear-gradient(to bottom, #f0f7ff 0%, #ffffff 100%);
    color: var(--neutral-600);
    padding: var(--space-24) 0 var(--space-8);
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--playful-blue);
}

/* Elegant Playful Pattern */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="120" height="120" viewBox="0 0 120 120" xmlns="http://www.w3.org/2000/svg"><path d="M10,20 Q15,10 20,20 T30,20" stroke="%233b82f6" fill="none" opacity="0.1" stroke-width="2"/><circle cx="90" cy="40" r="2" fill="%23fbbf24" opacity="0.2"/><path d="M60,80 L65,75 L70,80" stroke="%23f472b6" fill="none" opacity="0.1" stroke-width="2"/></svg>');
    opacity: 0.8;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: var(--space-10);
    margin-bottom: var(--space-16);
    align-items: start;
    position: relative;
    z-index: 1;
}

.footer-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--primary-600);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-text {
    line-height: 1.7;
    color: var(--neutral-600);
    font-weight: 500;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: var(--space-6);
    position: relative;
    padding-bottom: var(--space-2);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--playful-yellow);
    border-radius: var(--radius-full);
}

.footer-links li,
.footer-contact li {
    margin-bottom: var(--space-4);
    color: var(--neutral-600);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
    transition: transform var(--transition-base);
    font-weight: 500;
}

.footer-links li:hover {
    transform: translateX(5px);
    color: var(--primary-600);
}

.footer-contact li span:first-child {
    flex-shrink: 0;
    line-height: 1.6;
}

.footer-contact li span:last-child {
    flex: 1;
    overflow-wrap: break-word;
    word-wrap: break-word;
    min-width: 0;
}

.footer-links a {
    transition: all var(--transition-base);
    color: var(--neutral-600);
}

.footer-links a:hover {
    color: var(--primary-600);
}

.footer-login {
    display: inline-block;
    margin-top: var(--space-4);
    padding: var(--space-3) var(--space-8);
    background: var(--gradient-primary);
    color: white !important;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--text-sm);
    letter-spacing: 0.05em;
    box-shadow: 0 10px 20px hsla(var(--primary-hue), 85%, 55%, 0.2);
    transition: all var(--transition-bounce);
}

.footer-login:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px hsla(var(--primary-hue), 85%, 55%, 0.3);
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 2px dashed var(--neutral-200);
    color: var(--neutral-500);
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
}

.developer-credit a {
    color: var(--primary-600);
    font-weight: 700;
    transition: all var(--transition-base);
}

.developer-credit a:hover {
    color: var(--primary-700);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2);
    }
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .hero-title {
        font-size: var(--text-5xl);
    }

    .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--space-6);
        gap: var(--space-4);
        box-shadow: var(--shadow-xl);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-subtitle {
        font-size: var(--text-lg);
    }

    .section-title {
        font-size: var(--text-4xl);
    }

    .cta-title {
        font-size: var(--text-4xl);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: var(--space-4);
    }

    .hero-title {
        font-size: var(--text-3xl);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .banner-content {
        grid-template-columns: 1fr;
        padding: var(--space-6) var(--space-4);
        min-height: auto;
    }

    .banner-text {
        padding: var(--space-4);
        text-align: center;
    }

    .banner-title {
        font-size: var(--text-2xl);
    }

    .banner-description {
        font-size: var(--text-base);
    }

    .banners-track {
        height: 80vh;
        min-height: 450px;
    }

    .banner-slide img {
        height: 100%;
    }

    .banner-nav {
        width: 30px;
        height: 30px;
    }

    .banner-prev {
        left: 5px;
    }

    .banner-next {
        right: 5px;
    }

}

/* ===================================
   BIRTHDAYS SECTION - MINIMALIST
   =================================== */

.birthdays-section {
    padding: var(--space-12) 0;
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #fdfbf7);
}

.birthdays-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-10);
    margin-top: var(--space-6);
}

.birthday-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 180px;
    /* Mais largo para foto maior */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.birthday-card:hover {
    transform: translateY(-8px);
}

.birthday-photo-container {
    width: 150px;
    /* Foto bem maior */
    height: 150px;
    position: relative;
    margin-bottom: var(--space-4);
}

.birthday-photo-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 5px solid white;
    /* Borda um pouco mais grossa */
    transition: box-shadow 0.3s ease;
}

.birthday-card:hover .birthday-photo-container img {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.birthday-day {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    /* Badge maior */
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    border: 3px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.birthday-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    /* Fonte maior */
    font-weight: 700;
    color: var(--neutral-800);
    margin: 0;
    line-height: 1.2;
}

.birthday-type {
    display: none;
    /* Ocultando tipo */
}

/* Balão decorativo */
.birthday-photo-container::before {
    content: '🎈';
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 2.5rem;
    z-index: 10;
    animation: floatBalloon 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
    pointer-events: none;
    /* Não atrapalha o click/hover */
}

/* Variação para ficar mais dinâmico (pares com tempo diferente) */
.birthday-card:nth-child(even) .birthday-photo-container::before {
    animation-delay: 1.5s;
    right: -10px;
    left: auto;
    top: -20px;
    transform: rotate(15deg);
}

@keyframes floatBalloon {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-12px) rotate(10deg);
    }
}

.no-birthdays {
    text-align: center;
    color: var(--neutral-500);
    font-style: italic;
    width: 100%;
    padding: var(--space-8);
}

@media (max-width: 640px) {
    .birthdays-grid {
        gap: var(--space-6);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* 3 por linha no mobile se couber, senao 2 */
        justify-items: center;
    }

    .birthday-card {
        width: 100px;
    }

    .birthday-photo-container {
        width: 110px;
        /* Aumentado de 80px */
        height: 110px;
    }

    .birthday-name {
        font-size: 1rem;
    }

    .birthday-day {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        border-width: 2px;
    }
}

/* ===================================
   MATRICULAS HIGHLIGHT SECTION
   =================================== */

.matriculas-highlight {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    /* Laranja vibrante */
    padding: var(--space-6) 0;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Efeito de brilho/shimmer no fundo */
.matriculas-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    animation: shimmer 6s infinite;
    pointer-events: none;
}

.matriculas-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    position: relative;
    /* Para z-index do botão funcionar */
    z-index: 2;
}

.matriculas-content-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.matriculas-badge-icon {
    font-size: 2.5rem;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: bounce 2s infinite;
}

.matriculas-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.matriculas-desc {
    margin: 0;
    opacity: 0.95;
    font-size: 1.1rem;
    font-weight: 500;
}

.btn-matricula {
    background: white;
    color: #FF6B6B;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.btn-matricula:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #E05050;
    background: #fff;
}

.btn-arrow {
    transition: transform 0.2s;
    font-size: 1.2rem;
}

.btn-matricula:hover .btn-arrow {
    transform: translateX(4px);
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .matriculas-container {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
        padding: 0 var(--space-4);
    }

    .matriculas-content-wrapper {
        flex-direction: column;
        gap: var(--space-2);
    }

    .matriculas-badge-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        margin-bottom: var(--space-2);
    }

    .matriculas-title {
        font-size: 1.4rem;
    }

    .matriculas-highlight {
        padding: var(--space-6) 0;
    }

    .btn-matricula {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   HIDE FLOATING WHATSAPP BUTTON
   =================================== */
[class*="whatsapp-float"],
[class*="float-whatsapp"],
[id*="whatsapp-float"],
[id*="float-whatsapp"],
.wa-chat-box,
.wa-chat-button,
#wa-widget,
#whatsapp-widget {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}