/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Configuração das fontes Neulis */
@font-face {
    font-family: 'Neulis Alt';
    src: url('../fonts/neulisalt/NeulisAlt-Regular.woff2') format('woff2'),
         url('../fonts/neulisalt/NeulisAlt-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neulis Alt';
    src: url('../fonts/neulisalt/NeulisAlt-Bold.woff2') format('woff2'),
         url('../fonts/neulisalt/NeulisAlt-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neulis Alt';
    src: url('../fonts/neulisalt/NeulisAlt-ExtraBold.woff2') format('woff2'),
         url('../fonts/neulisalt/NeulisAlt-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neulis Neue';
    src: url('../fonts/neulisneue/fonnts.com-Neulis_Neue_Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neulis Neue';
    src: url('../fonts/neulisneue/fonnts.com-Neulis_Neue_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neulis Neue';
    src: url('../fonts/neulisneue/fonnts.com-Neulis_Neue_Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Variáveis CSS com identidade visual Colégio Santa Terezinha */
:root {
    --primary-color: #F85806;           /* Laranja principal */
    --secondary-color: #04477B;         /* Azul escuro */
    --tertiary-color: #FCC103;          /* Amarelo */
    --quaternary-color: #009AC7;        /* Azul claro */
    --text-color: #2c3e50;
    --text-light: #6b7280;
    --background-color: #ffffff;
    --light-gray: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(248, 88, 6, 0.15), 0 2px 4px -1px rgba(248, 88, 6, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(248, 88, 6, 0.15), 0 10px 10px -5px rgba(248, 88, 6, 0.08);
    --gradient-primary: linear-gradient(135deg, #F85806 0%, #FCC103 100%);
    --gradient-secondary: linear-gradient(135deg, #04477B 0%, #009AC7 100%);
    --gradient-accent: linear-gradient(135deg, #FCC103 0%, #F85806 100%);
}

/* Tipografia com fontes Neulis */
body {
    font-family: 'Neulis Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #ffffff 50%, #f1f3f4 75%, #ffffff 100%);
    background-size: 400% 400%;
    background-attachment: fixed;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Padrão geométrico sutil no fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(248, 88, 6, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(4, 71, 123, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(252, 193, 3, 0.02) 0%, transparent 50%);
    background-size: 800px 800px, 600px 600px, 1000px 1000px;
    background-position: 0 0, 400px 300px, 200px 100px;
    z-index: -1;
    pointer-events: none;
}

/* Padrão de pontos discretos */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(248, 88, 6, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Neulis Alt', 'Neulis Neue', sans-serif;
    margin-bottom: 1.5rem;
    font-weight: bold;
    line-height: 1.25;
    color: var(--secondary-color);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1 { font-size: 3.5rem; font-weight: bold; }
h2 { font-size: 2.5rem; font-weight: bold; }
h3 { font-size: 2rem; font-weight: bold; }
h4 { font-size: 1.5rem; font-weight: bold; }
h5 { font-size: 1.25rem; font-weight: bold; }
h6 { font-size: 1rem; font-weight: bold; }

p {
    font-family: 'Neulis Neue', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Layout principal */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navbar Clean */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Navbar compactada ao fazer scroll */
.navbar.scrolled {
    background-color: transparent;
    backdrop-filter: none;
    border-bottom: none;
    padding: 0.5rem 0;
}

.navbar.scrolled .container {
    padding: 0.5rem 20px;
}

.navbar.scrolled .navbar-nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
}

.navbar.scrolled .logo-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(248, 88, 6, 0.15);
    border: 2px solid rgba(248, 88, 6, 0.2);
    transform: scale(0.85);
}

.navbar.scrolled .navbar-logo {
    height: 35px;
}

/* Navbar se expande ao passar o cursor quando scrolled */
.navbar.scrolled:hover {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.navbar.scrolled:hover .container {
    padding: 1.5rem 20px;
}

.navbar.scrolled:hover .navbar-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.navbar.scrolled:hover .logo-card {
    background: white;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transform: scale(1);
}

.navbar.scrolled:hover .navbar-logo {
    height: 45px;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 20px;
}

.navbar-brand {
    font-family: 'Neulis Alt', sans-serif;
    color: var(--secondary-color);
    font-size: 1.75rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-card {
    background: white;
    padding: 0.75rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 88, 6, 0.2), transparent);
    transition: left 0.5s ease;
}

.logo-card:hover::before {
    left: 100%;
}

.logo-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.navbar-logo {
    height: 45px;
    width: auto;
    transition: all 0.4s ease;
}

.logo-card:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    transition: all 0.4s ease;
}

.nav-link {
    font-family: 'Neulis Neue', sans-serif;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Conteúdo principal */
main {
    flex: 1;
}

.hero-section {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
    background-size: cover;
}

.hero-title {
    font-family: 'Neulis Alt', sans-serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-family: 'Neulis Neue', sans-serif;
    font-size: 1.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.hero-slogan {
    font-family: 'Neulis Alt', sans-serif;
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Hero específico para página inicial com banner */
.hero-section.hero-home {
    background: 
        center center / contain no-repeat url('../images/Banner CST.png'),
        linear-gradient(135deg, #F85806 0%, #F85806 100%); /* gradiente de fundo */
    width: 100%;
    min-height: 73vh;   /* altura mínima */
    max-height: 90vh;   /* altura máxima para não sobrar espaço demais */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Para telas muito pequenas (celulares), deixar mais flexível */
@media (max-width: 768px) {
    .hero-section.hero-home {
        min-height: 50vh; /* reduz altura em celulares */
        max-height: none; /* deixa livre no mobile */
        background-size: cover; /* melhor ajuste em telas verticais */
        background-position: center top;
    }
}

.hero-section.hero-home::before {
    display: none;
}

.hero-section.hero-home .container {
    padding-bottom: 2rem;
}






/* Hero específico para página quem-somos com imagem única */
.hero-section.hero-quem-somos {
    background-image: url('../images/escola.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Overlay cinza para melhor legibilidade */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(152, 158, 162, 0.75);
    z-index: 2;
}

.hero-section.hero-quem-somos .container {
    position: relative;
    z-index: 3;
}

.hero-section.hero-quem-somos .hero-title,
.hero-section.hero-quem-somos .hero-subtitle,
.hero-section.hero-quem-somos .hero-slogan {
    position: relative;
    z-index: 3;
    color: var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.content-section {
    padding: 5rem 0;
    position: relative;
}

/* Elementos decorativos nas seções */
.content-section:nth-child(even) {
    background: linear-gradient(135deg, rgba(248, 88, 6, 0.02) 0%, var(--light-gray) 50%, rgba(4, 71, 123, 0.02) 100%);
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.3;
}

.section-content {
    background-color: transparent;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Neulis Alt', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Elementos decorativos nos títulos */
.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

/* Cards modernos */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Layout específico 2x2 para cards */
.card-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

/* Padrão decorativo nos cards */
.card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(248, 88, 6, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-title {
    font-family: 'Neulis Alt', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
}

/* Estilo especial para os títulos dos cards na página Quem Somos */
.card-title::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Cards especiais para página Quem Somos com mais contraste */
body:has([data-page="quem-somos"]) .card,
.hero-quem-somos ~ * .card {
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 50%, #e8eaed 100%);
    border: 1px solid rgba(4, 71, 123, 0.1);
    box-shadow: 0 8px 32px rgba(4, 71, 123, 0.1);
}

.hero-quem-somos ~ * .card::after {
    background: radial-gradient(circle, rgba(4, 71, 123, 0.1) 0%, transparent 70%);
}

.hero-quem-somos ~ * .card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f1f3f4 100%);
    box-shadow: 0 12px 40px rgba(4, 71, 123, 0.15);
}

/* Cards com banners superiores */
.card-fundamental1,
.card-fundamental2,
.card-projetos,
.card-atividades,
.card-cultura-maker,
.card-financeira,
.card-ambientes,
.card-metodologias,
.card-proximidade,
.info-card-escola,
.card-educadores1,
.card-educadores2,
.card-equipe-apoio {
    padding: 0;
    overflow: hidden;
}

.card-banner {
    height: 300px;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
}

.card-fundamental1 .card-banner {
    background-image: url('../images/fundamental1.jpg');
}

.card-fundamental2 .card-banner {
    background-image: url('../images/fundamental2.jpg');
}

.card-projetos .card-banner {
    background-image: url('../images/projetos.jpg');
}

.card-atividades .card-banner {
    background-image: url('../images/atividadescomplementares.jpg');
}

.card-cultura-maker .card-banner {
    background-image: url('../images/culturamaker.jpg');
}

.card-financeira .card-banner {
    background-image: url('../images/financeira.jpg');
}

.card-ambientes .card-banner {
    background-image: url('../images/ambientesmodernos.jpg');
}

.card-metodologias .card-banner {
    background-image: url('../images/metodologias.jpg');
}

.card-proximidade .card-banner {
    background-image: url('../images/proximidade2.jpg');
}

.info-card-escola .card-banner {
    background-image: url('../images/escola.jpg');
}

/* Placeholders com emojis para cards da página Quem Somos */
.placeholder-banner {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8eaed 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px dashed rgba(4, 71, 123, 0.3);
    transition: all 0.3s ease;
}

.placeholder-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(4, 71, 123, 0.05) 10px,
        rgba(4, 71, 123, 0.05) 20px
    );
    pointer-events: none;
}

.emoji-placeholder {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 2;
}

.placeholder-text {
    font-family: 'Neulis Alt', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.card:hover .placeholder-banner {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, var(--light-gray) 100%);
}

.card:hover .emoji-placeholder {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(248, 88, 6, 0.2));
}

.card:hover .placeholder-text {
    color: var(--primary-color);
    opacity: 1;
}

.card-content {
    padding: 2.5rem;
}

.card-fundamental1 .card-title,
.card-fundamental2 .card-title,
.card-projetos .card-title,
.card-atividades .card-title,
.card-cultura-maker .card-title,
.card-financeira .card-title,
.card-ambientes .card-title,
.card-metodologias .card-title,
.card-proximidade .card-title,
.card-educadores1 .card-title,
.card-educadores2 .card-title,
.card-equipe-apoio .card-title,
.info-card-escola .info-title {
    margin-bottom: 1.5rem;
}

/* Ajustes específicos para info-card com banner */
.info-card-escola .card-content {
    padding: 2.5rem;
}

.info-card-escola .benefits-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.info-card-escola .benefits-list li {
    font-family: 'Neulis Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Botões com identidade visual Santa Terezinha */
.btn {
    font-family: 'Neulis Neue', sans-serif;
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(248, 88, 6, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(248, 88, 6, 0.4);
}

.btn-primary {
    background: var(--gradient-primary);
}

.btn-secondary {
    background: var(--gradient-secondary);
    box-shadow: 0 4px 15px rgba(4, 71, 123, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(4, 71, 123, 0.4);
}

.btn-accent {
    background: var(--gradient-accent);
    box-shadow: 0 4px 15px rgba(252, 193, 3, 0.3);
}

.btn-accent:hover {
    box-shadow: 0 8px 25px rgba(252, 193, 3, 0.4);
}

/* Footer moderno */
.footer {
    background-image: url('../images/footer1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 5rem 0 3rem;
    margin-top: auto;
    position: relative;
}

/* Overlay sutil apenas para melhorar legibilidade do texto */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 71, 123, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    align-items: start;
}

.footer-section h4 {
    font-family: 'Neulis Alt', sans-serif;
    margin-bottom: 2rem;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--tertiary-color);
    border-radius: 2px;
}

.footer-section p,
.footer-section a {
    font-family: 'Neulis Neue', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.8;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    display: block;
}

.footer-section a:hover {
    color: var(--tertiary-color);
    transform: translateX(5px);
}

/* Primeira seção do footer com mais destaque */
.footer-section:first-child {
    padding-right: 2rem;
}

.footer-section:first-child h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section:first-child p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

/* Botão de contato no footer */
.footer-contact-btn {
    margin-top: 1.5rem;
    text-align: left;
}

.footer-contact-btn .btn {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-family: 'Neulis Neue', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsividade moderna */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 20px;
    }

    .navbar-nav {
        gap: 1.5rem;
        justify-content: center;
    }

    .logo-card {
        padding: 0.5rem;
    }

    .navbar-logo {
        height: 40px;
    }

    /* Ajustes para navbar compactada no tablet */
    .navbar.scrolled .logo-card {
        transform: scale(0.9);
    }

    .navbar.scrolled .navbar-logo {
        height: 32px;
    }

    .navbar.scrolled:hover .logo-card {
        transform: scale(1);
    }

    .navbar.scrolled:hover .navbar-logo {
        height: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-slogan {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 3rem 0;
    }

    .section-content {
        padding: 0 1.5rem;
    }

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

    .card-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .card-grid-2x2 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2rem;
    }

    .card {
        padding: 2rem;
    }
    
    /* Responsividade para cards com banners no tablet */
    .card-content {
        padding: 2rem;
    }
    
    .card-banner {
        height: 200px;
    }
    
    /* Responsividade para placeholders no tablet */
    .emoji-placeholder {
        font-size: 3rem;
        margin-bottom: 0.75rem;
    }
    
    .placeholder-text {
        font-size: 1rem;
    }
    
    /* Responsividade para info-card com banner no tablet */
    .info-card-escola .card-content {
        padding: 2rem;
    }
    
    .info-card-escola .benefits-list li {
        font-size: 1rem;
    }
    
    /* Responsividade para hero quem-somos no tablet */
    .hero-section.hero-quem-somos .hero-title {
        font-size: 2.5rem;
        color: var(--secondary-color);
    }
    
    .hero-section.hero-quem-somos .hero-subtitle {
        font-size: 1.25rem;
        color: var(--secondary-color);
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Responsividade para hero da página inicial no tablet */
    .hero-section.hero-home {
        padding: 10rem 0 1.5rem;
        min-height: 65vh;
    }
    
    .hero-section.hero-home .container {
        padding-bottom: 1.5rem;
    }
    
    /* Responsividade para footer no tablet */
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .footer-section:first-child {
        grid-column: 1;
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-contact-btn {
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section:first-child h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-slogan {
        font-size: 1rem;
    }
    
    /* Responsividade para hero da página inicial */
    .hero-section.hero-home {
        padding: 8rem 0 1rem;
        min-height: 60vh;
    }
    
    .hero-section.hero-home .container {
        padding-bottom: 1rem;
    }

    .content-section {
        padding: 2rem 0;
    }

    .section-content {
        padding: 0 1rem;
    }

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

    .card {
        padding: 1.5rem;
    }
    
    /* Responsividade para cards com banners no mobile */
    .card-content {
        padding: 1.5rem;
    }
    
    .card-banner {
        height: 160px;
    }
    
    /* Responsividade para placeholders no mobile */
    .emoji-placeholder {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .placeholder-text {
        font-size: 0.9rem;
    }
    
    /* Responsividade para info-card com banner no mobile */
    .info-card-escola .card-content {
        padding: 1.5rem;
    }
    
    .info-card-escola .benefits-list li {
        font-size: 0.95rem;
    }
    
    .info-card-escola .info-title {
        font-size: 1.25rem;
    }
    
    /* Responsividade para hero quem-somos no mobile */
    .hero-section.hero-quem-somos .hero-title {
        font-size: 2rem;
        color: var(--primary-color);
    }
    
    .hero-section.hero-quem-somos .hero-subtitle {
        font-size: 1rem;
        color: white;
    }
    
    .hero-section.hero-quem-somos .hero-slogan {
        font-size: 1rem;
        color: white;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .logo-card {
        padding: 0.4rem;
    }

    .navbar-logo {
        height: 35px;
    }

    /* Ajustes para navbar compactada no mobile */
    .navbar.scrolled {
        padding: 0.25rem 0;
    }

    .navbar.scrolled .container {
        padding: 0.25rem 20px;
    }

    .navbar.scrolled .logo-card {
        transform: scale(0.8);
        padding: 0.3rem;
    }

    .navbar.scrolled .navbar-logo {
        height: 28px;
    }

    .navbar.scrolled:hover {
        padding: 1rem 0;
    }

    .navbar.scrolled:hover .container {
        padding: 1rem 20px;
    }

    .navbar.scrolled:hover .logo-card {
        transform: scale(1);
        padding: 0.4rem;
    }

    .navbar.scrolled:hover .navbar-logo {
        height: 35px;
    }
    
    /* Responsividade para footer no mobile */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .footer-section:first-child {
        grid-column: 1;
        margin-bottom: 1.5rem;
        padding-right: 0;
    }
    
    .footer-section:first-child h4 {
        font-size: 1.3rem;
    }
    
    .footer-section:first-child p {
        font-size: 1rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section h4::after {
        width: 30px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        padding-top: 2rem;
    }
}

/* Layout da Seção de Contato */
.contact-layout {
    max-width: 1000px;
    margin: 3rem auto 2rem;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-title {
    font-family: 'Neulis Alt', sans-serif;
    color: var(--secondary-color);
    font-size: 1.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.benefits-list li {
    font-family: 'Neulis Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Overlay e Sidebar do Formulário */
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.form-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-sidebar {
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 100%;
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.form-overlay.active .form-sidebar {
    transform: translateX(0);
}

.form-header {
    background: var(--light-gray);
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.form-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.form-title {
    font-family: 'Neulis Alt', sans-serif;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
}

.close-form-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-form-btn:hover {
    background: var(--border-color);
    color: var(--primary-color);
}

.form-content {
    flex: 1;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-subtitle {
    font-family: 'Neulis Neue', sans-serif;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.iframe-wrapper {
    position: relative;
    flex: 1;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
}

.contact-form-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: white;
}

/* Loading indicator para o iframe */
.iframe-wrapper.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsividade para o formulário lateral */
@media (max-width: 768px) {
    .form-sidebar {
        width: 90%;
        right: 5%;
        border-radius: 16px 0 0 16px;
    }

    .contact-form-iframe {
        height: 450px;
    }

    .iframe-wrapper {
        min-height: 450px;
    }

    .info-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

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

    .benefits-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .form-sidebar {
        width: 95%;
        right: 2.5%;
        border-radius: 12px 0 0 12px;
    }

    .form-header {
        padding: 1.5rem;
    }

    .form-title {
        font-size: 1.25rem;
    }

    .form-content {
        padding: 1.5rem;
    }

    .contact-form-iframe {
        height: 400px;
    }

    .iframe-wrapper {
        min-height: 400px;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-title {
        font-size: 1.25rem;
    }

    .benefits-list li {
        font-size: 0.95rem;
    }
}

/* Botão de voltar ao topo */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(248, 88, 6, 0.4);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid white;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(248, 88, 6, 0.6);
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
    border-radius: 50%;
}

.scroll-to-top:hover::before {
    left: 100%;
}

/* Modal de contato */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.contact-modal.active .contact-modal-content {
    transform: scale(1);
}

.contact-modal-header {
    background: var(--light-gray);
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.contact-modal-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-modal-title {
    font-family: 'Neulis Alt', sans-serif;
    color: var(--secondary-color);
    font-size: 1.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
}

.close-contact-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-contact-modal:hover {
    background: var(--border-color);
    color: var(--primary-color);
}

.contact-modal-body {
    padding: 2rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.contact-item-title {
    font-family: 'Neulis Alt', sans-serif;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.contact-item p {
    font-family: 'Neulis Neue', sans-serif;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    line-height: 1.5;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-cta {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    border: 2px dashed var(--primary-color);
}

.contact-cta p {
    font-family: 'Neulis Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Responsividade para o modal de contato */
@media (max-width: 768px) {
    .contact-modal {
        padding: 10px;
    }
    
    .contact-modal-header {
        padding: 1.5rem;
    }
    
    .contact-modal-title {
        font-size: 1.5rem;
    }
    
    .contact-modal-body {
        padding: 1.5rem;
    }
    
    .contact-info-grid {
        gap: 1.25rem;
        max-width: 100%;
    }
    
    .contact-item {
        padding: 1.25rem;
    }
    
    .contact-cta {
        padding: 1.5rem;
    }
    
    .contact-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-modal-content {
        margin: 10px;
        border-radius: 12px;
    }
    
    .contact-modal-header {
        padding: 1.25rem;
        border-radius: 12px 12px 0 0;
    }
    
    .contact-modal-title {
        font-size: 1.25rem;
    }
    
    .contact-modal-body {
        padding: 1.25rem;
    }
    
    .contact-info-grid {
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
}

/* Responsividade para o botão no mobile */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        box-shadow: 0 4px 15px rgba(248, 88, 6, 0.5);
    }
    
    .scroll-to-top:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 8px 25px rgba(248, 88, 6, 0.6);
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

/* Página de Erro 404 */
.error-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, white 100%);
}

.error-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.error-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.error-logo {
    margin-bottom: 2rem;
}

.logo-404 {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.error-number {
    font-family: 'Neulis Alt', sans-serif;
    font-size: 6rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(248, 88, 6, 0.2);
    line-height: 1;
}

.error-title {
    font-family: 'Neulis Alt', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.error-message {
    font-family: 'Neulis Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.error-suggestions {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

.error-suggestions h3 {
    font-family: 'Neulis Alt', sans-serif;
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.error-suggestions li {
    font-family: 'Neulis Neue', sans-serif;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.error-suggestions li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsividade para página de erro */
@media (max-width: 768px) {
    .error-section {
        padding: 2rem 0;
        min-height: 70vh;
    }
    
    .error-card {
        padding: 2rem;
        margin: 0 1rem;
        border-radius: 16px;
    }
    
    .logo-404 {
        height: 60px;
    }
    
    .error-number {
        font-size: 4.5rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-message {
        font-size: 1.1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .error-suggestions {
        padding: 1.5rem;
        text-align: center;
    }
    
    .error-suggestions ul {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .error-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .logo-404 {
        height: 50px;
    }
    
    .error-number {
        font-size: 3.5rem;
    }
    
    .error-title {
        font-size: 1.25rem;
    }
    
    .error-message {
        font-size: 1rem;
    }
    
    .error-suggestions h3 {
        font-size: 1.1rem;
    }
    
    .error-suggestions {
        padding: 1.25rem;
    }
}

/* Animações de Scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Classes para animações */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.fade-in-scale {
    animation: fadeInScale 0.8s ease-out forwards;
}

.slide-in-bottom {
    animation: slideInFromBottom 1s ease-out forwards;
}

/* Delays escalonados para múltiplos elementos */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }

/* Animação de parallax para hero */
.parallax-element {
    transition: transform 0.1s linear;
}

/* Melhoria na animação de hover dos cards */
.card {
    transform-style: preserve-3d;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Animação de texto digitando */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-color); }
}

.typing-animation {
    overflow: hidden;
    border-right: 3px solid var(--primary-color);
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

/* Melhoria nos efeitos dos botões */
.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(248, 88, 6, 0.5);
}

/* Animação para section titles */
.section-title {
    position: relative;
    overflow: hidden;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.8s ease;
}

.section-title.animate::before {
    opacity: 0.6;
    left: -60px;
}

/* Efeito de ondulação no background */
@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

.wave-background {
    animation: wave 6s ease-in-out infinite;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }