/* ========================================
   VERSÃO 2 - COLORIDO E LÚDICO
   Design: Arco-íris, formas geométricas, divertido
   ======================================== */

:root {
    --pink: #ff6b9d;
    --pink-light: #ffb3d1;
    --blue: #4ecdc4;
    --blue-light: #a8e6cf;
    --yellow: #ffd93d;
    --yellow-light: #fff3b0;
    --green: #6bcb77;
    --green-light: #b5ead7;
    --orange: #ff9f43;
    --purple: #a55eea;
    --red: #ff6b6b;
    
    --text: #2d3436;
    --text-light: #636e72;
    --bg: #ffffff;
    --bg-cream: #fffef7;
    
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-color: 0 10px 30px rgba(255,107,157,0.2);
    --radius: 24px;
    --radius-lg: 32px;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text);
    background: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loader */
#loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, var(--blue) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-shapes {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.shape {
    width: 20px;
    height: 20px;
    animation: bounce-loader 0.6s infinite alternate;
}

.shape-1 {
    background: var(--yellow);
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-2 {
    background: var(--green);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: 0.2s;
}

.shape-3 {
    background: var(--orange);
    animation-delay: 0.4s;
}

@keyframes bounce-loader {
    to { transform: translateY(-20px) scale(1.2); }
}

.loader-text {
    font-family: 'Baloo 2', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
}

/* Floating Shapes Background */
.floating-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.float-shape {
    position: absolute;
    opacity: 0.15;
    animation: float-random 20s infinite;
}

.float-shape.circle {
    border-radius: 50%;
}

.float-shape.triangle {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.float-shape.star {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.float-shape.pink {
    background: var(--pink);
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
}

.float-shape.yellow {
    background: var(--yellow);
    width: 80px;
    height: 80px;
    top: 30%;
    right: 10%;
    animation-delay: -5s;
}

.float-shape.blue {
    background: var(--blue);
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 15%;
    animation-delay: -10s;
}

.float-shape.green {
    background: var(--green);
    width: 90px;
    height: 90px;
    bottom: 30%;
    right: 5%;
    animation-delay: -15s;
}

.float-shape.orange {
    background: var(--orange);
    width: 70px;
    height: 70px;
    top: 60%;
    left: 50%;
    animation-delay: -8s;
}

@keyframes float-random {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
    75% { transform: translate(20px, 30px) rotate(270deg); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(255,107,157,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255,107,157,0.5);
}

.btn-outline {
    background: white;
    color: var(--purple);
    border: 3px solid var(--purple);
}

.btn-outline:hover {
    background: var(--purple);
    color: white;
    transform: translateY(-3px);
}

.btn-rainbow {
    background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow), var(--green), var(--blue), var(--purple));
    background-size: 300% 100%;
    color: white;
    animation: rainbow-shift 3s linear infinite;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@keyframes rainbow-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-bounce {
    animation: bounce-btn 2s infinite;
}

@keyframes bounce-btn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.btn-wiggle:hover {
    animation: wiggle 0.5s ease;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.btn-turma {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
}

.btn-pink {
    background: var(--pink);
    color: white;
}

.btn-green {
    background: var(--green);
    color: white;
}

.btn-blue {
    background: var(--blue);
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transform: rotate(-5deg);
    box-shadow: var(--shadow-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Baloo 2', cursive;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--orange);
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link i {
    font-size: 0.8rem;
}

.nav-link:hover {
    background: var(--pink-light);
    color: var(--pink);
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--pink);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--pink-light);
    top: -100px;
    left: -100px;
    animation: blob-move 15s infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--blue-light);
    top: 50%;
    right: -100px;
    animation: blob-move 12s infinite reverse;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--yellow-light);
    bottom: -50px;
    left: 30%;
    animation: blob-move 18s infinite;
}

@keyframes blob-move {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--purple);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: 'Baloo 2', cursive;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 50%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.frame-decoration {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 6px solid;
    z-index: 10;
}

.frame-top-left {
    top: -10px;
    left: -10px;
    border-color: var(--pink);
    border-right: none;
    border-bottom: none;
    border-radius: 20px 0 0 0;
}

.frame-top-right {
    top: -10px;
    right: -10px;
    border-color: var(--yellow);
    border-left: none;
    border-bottom: none;
    border-radius: 0 20px 0 0;
}

.frame-bottom-left {
    bottom: -10px;
    left: -10px;
    border-color: var(--green);
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 20px;
}

.frame-bottom-right {
    bottom: -10px;
    right: -10px;
    border-color: var(--blue);
    border-left: none;
    border-top: none;
    border-radius: 0 0 20px 0;
}

.hero-floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 0.875rem 1.25rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.85rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.card-icon.green { background: var(--green); }
.card-icon.red { background: var(--red); }
.card-icon.yellow { background: var(--yellow); color: var(--text); }

.card-1 {
    top: 2rem;
    right: -1rem;
    animation: float-card 3s ease-in-out infinite;
}

.card-2 {
    bottom: 4rem;
    left: -1rem;
    animation: float-card 3s ease-in-out infinite 1s;
}

.card-3 {
    bottom: 8rem;
    right: 2rem;
    animation: float-card 3s ease-in-out infinite 2s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* Section Styles */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--yellow-light) 100%);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--purple);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Baloo 2', cursive;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

.highlight-box {
    background: var(--yellow);
    padding: 0 0.5rem;
    border-radius: 8px;
    display: inline-block;
    transform: rotate(-2deg);
}

.highlight-underline {
    position: relative;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--yellow);
    z-index: -1;
    border-radius: 4px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Sobre */
.sobre {
    padding: 6rem 0;
    background: white;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-stack {
    position: relative;
    height: 450px;
}

.stack-img {
    position: absolute;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stack-1 {
    width: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}

.stack-2 {
    width: 60%;
    bottom: 0;
    right: 0;
    z-index: 1;
    border: 6px solid var(--yellow);
}

.image-stack:hover .stack-1 {
    transform: rotate(-5deg) scale(1.02);
}

.image-stack:hover .stack-2 {
    transform: rotate(5deg) scale(1.02);
}

.sobre-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.sobre-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-cream);
    border-radius: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.feature-icon.pink { background: var(--pink); }
.feature-icon.blue { background: var(--blue); }
.feature-icon.green { background: var(--green); }
.feature-icon.orange { background: var(--orange); }

/* Diferenciais */
.diferenciais {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, white 100%);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.diferencial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.diferencial-card:hover {
    transform: translateY(-10px) rotate(2deg);
}

.card-shape {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.2;
}

.card-pink .card-shape { background: var(--pink); }
.card-green .card-shape { background: var(--green); }
.card-blue .card-shape { background: var(--blue); }
.card-yellow .card-shape { background: var(--yellow); }

.diferencial-card .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
}

.card-pink .card-icon { background: var(--pink); }
.card-green .card-icon { background: var(--green); }
.card-blue .card-icon { background: var(--blue); }
.card-yellow .card-icon { background: var(--yellow); color: var(--text); }

.diferencial-card h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.diferencial-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Turmas */
.turmas {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.turmas-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 100%);
    opacity: 0.3;
}

.turmas-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.turma-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.turma-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.turma-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-cream);
}

.turma-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.turma-bercario .turma-icon { background: var(--pink); }
.turma-maternal .turma-icon { background: var(--green); }
.turma-preescola .turma-icon { background: var(--blue); }

.turma-age {
    background: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
}

.turma-image {
    height: 180px;
    overflow: hidden;
}

.turma-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.turma-card:hover .turma-image img {
    transform: scale(1.1);
}

.turma-content {
    padding: 1.5rem;
}

.turma-content h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.turma-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.turma-content li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Galeria */
.galeria {
    padding: 6rem 0;
    background: white;
}

.galeria-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 200px);
    gap: 1.5rem;
}

.galeria-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.item-1 {
    grid-row: span 2;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay span {
    color: white;
    font-family: 'Baloo 2', cursive;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Depoimento */
.depoimento {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
}

.depoimento-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.depoimento-card blockquote {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.depoimento-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--orange);
}

/* FAQ */
.faq {
    padding: 6rem 0;
    background: var(--bg-cream);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--text);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--pink);
    transition: var(--transition);
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    background: var(--pink-light);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contato */
.contato {
    padding: 6rem 0;
    background: white;
}

.contato-wrapper {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contato-info h2 {
    font-family: 'Baloo 2', cursive;
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.contato-info > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contato-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text);
}

.item-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.item-icon.pink { background: var(--pink); }
.item-icon.blue { background: var(--blue); }

.contato-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contato-actions .btn {
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--text);
    color: white;
    padding-top: 0;
    position: relative;
}

.footer-wave {
    color: white;
    margin-bottom: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer .container {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    background: rgba(255,255,255,0.1);
}

.footer-brand .logo-name {
    background: linear-gradient(135deg, var(--pink) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--pink);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .sobre-grid {
        grid-template-columns: 1fr;
    }
    
    .image-stack {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .turmas-carousel {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .galeria-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .item-1 {
        grid-row: span 1;
    }
    
    .contato-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contato-details {
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header .btn-rainbow {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image {
        height: 350px;
    }
    
    .floating-card {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimento-card {
        padding: 2rem;
    }
    
    .depoimento-card blockquote {
        font-size: 1.25rem;
    }
    
    .social-links {
        justify-content: center;
    }
}
