/*
Theme Name: NeuroTech Kids
Author: Mister FILD
Description: Tema exclusivo Headless com foco em UI/UX Clínica Infantil.
Version: 3.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Quicksand:wght@500;700&display=swap');

:root {
    --ntk-primary: #1A4D5C; /* Azul/Verde Escuro mais sofisticado */
    --ntk-accent: #48B8B8; /* Verde Água vibrante */
    --ntk-playful: #FFB347; /* Amarelo/Laranja acolhedor */
    --ntk-bg-main: #F8FBFA; /* Fundo off-white clínico */
    --ntk-text-main: #334155;
    --ntk-text-light: #64748B;
    --ntk-radius: 24px;
}

body {
    font-family: 'Nunito', sans-serif; /* Nunito para leitura excelente */
    background-color: var(--ntk-bg-main);
    color: var(--ntk-text-main);
    margin: 0;
    padding: 0;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 { 
    font-family: 'Quicksand', sans-serif; /* Quicksand para títulos lúdicos */
    color: var(--ntk-primary); 
    font-weight: 700; 
}

a { text-decoration: none; transition: all 0.3s ease; }

/* Botões Premium */
.ntk-btn {
    display: inline-block;
    background-color: var(--ntk-playful);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 179, 71, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.ntk-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 179, 71, 0.6);
    color: #fff;
}

/* Banners */
.ntk-main-banner {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax suave */
}
.ntk-main-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 92, 0.9) 0%, rgba(72, 184, 184, 0.7) 100%);
    z-index: 1;
}
.ntk-banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #fff;
}
.ntk-banner-content h1 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.ntk-banner-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Animações */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }