/* ===============================================
   COLÉGIO DOM BOSCO AQUARELINHA
   Estilos Profissionais - Design Elegante
   Cores: Azul (#0A3D62, #1E5F8A) | Laranja (#FF7F00, #FF9F40)
   =============================================== */

/* ================= IMPORTS & RESET ================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    /* Cores Principais */
    --primary-dark: #0A3D62;
    --primary: #1E5F8A;
    --primary-light: #2E7DAF;
    --secondary: #FF7F00;
    --secondary-light: #FF9F40;
    --secondary-dark: #E66F00;
    
    /* Cores Neutras */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --light-gray: #E2E8F0;
    --gray: #94A3B8;
    --dark-gray: #475569;
    --dark: #1E293B;
    --black: #0F172A;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary) 50%, var(--secondary-light) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10,61,98,0.95) 0%, rgba(30,95,138,0.85) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10,61,98,0.1) 0%, rgba(10,61,98,0.8) 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(10,61,98,0.08);
    --shadow-md: 0 4px 20px rgba(10,61,98,0.12);
    --shadow-lg: 0 8px 40px rgba(10,61,98,0.15);
    --shadow-xl: 0 20px 60px rgba(10,61,98,0.2);
    --shadow-glow: 0 0 30px rgba(255,127,0,0.3);
    
    /* Tipografia */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Espaçamentos */
    --section-padding: 120px;
    --container-width: 1280px;
    
    /* Transições */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    --modal-primary: #E66F00;
    --modal-primary-dark: #CC5C00;
    --modal-primary-light: #FFF3E6;
    --modal-success: #10b981;
    --modal-text: #1F2937;
    --modal-text-light: #6B7280;
    --modal-border: #E5E7EB;
    --modal-bg: #FFFFFF;
    --modal-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ================= RESET & BASE ================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: var(--secondary);
    color: var(--white);
}

/* ================= CONTAINER ================= */
.container {
    width: 92%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= TIPOGRAFIA ================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    color: var(--dark-gray);
    font-size: 1.05rem;
}

/* ================= BARRA DE ACESSO RÁPIDO ================= */
.quick-access-bar {
    background: linear-gradient(135deg, #1A2C54 0%, #0C223E 100%);
    padding: 12px 0;
    position: relative;
    z-index: 1000;
}

.quick-access-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.quick-access-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quick-access-left {
    display: flex;
    gap: 30px;
}

.quick-access-left a,
.quick-access-right a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-access-left a:hover,
.quick-access-right a:hover {
    color: var(--secondary-light);
    transform: translateY(-2px);
}

.quick-access-left i,
.quick-access-right i {
    font-size: 0.85rem;
}

.quick-access-right {
    display: flex;
    gap: 15px;
}

.quick-access-right a {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    justify-content: center;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.quick-access-right a:hover {
    background: var(--secondary);
    transform: translateY(-3px) scale(1.1);
}

/* ================= HEADER PRINCIPAL ================= */
.main-header {
    background: #F7F7F7;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container {
    position: relative;
}

.logo {
    height: 150px;
    transition: var(--transition-base);
}

/* ================= NAVEGAÇÃO ================= */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-dark);
    padding: 12px 18px;
    border-radius: 8px;
    transition: var(--transition-base);
    font-size: 0.95rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: calc(100% - 36px);
}

.main-nav a:hover {
    color: var(--secondary);
    background: rgba(255,127,0,0.08);
}

.main-nav a.active {
    color: var(--secondary);
}

.main-nav a i {
    font-size: 0.7rem;
    transition: var(--transition-base);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    padding: 15px 0;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-base);
    z-index: 100;
    border: 1px solid var(--light-gray);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    border-left: 1px solid var(--light-gray);
    transform: rotate(45deg);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-content a {
    display: block;
    padding: 12px 25px;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 0;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background: var(--off-white);
    padding-left: 30px;
}

/* Botão CTA no Menu */
.cta-nav a.btn-primary {
    background: var(--gradient-secondary);
    color: var(--white) !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(255,127,0,0.4);
    animation: pulse-glow 2s infinite;
}

.cta-nav a.btn-primary::after {
    display: none;
}

.cta-nav a.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    background: var(--secondary-dark);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: var(--shadow-md), 0 0 0 0 rgba(255,127,0,0.4); }
    50% { box-shadow: var(--shadow-md), 0 0 0 8px rgba(255,127,0,0); }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1200;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-dark);
}

/* Padrão decorativo no hero - manter igual */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    /* Garantir que todos os slides tenham o mesmo comportamento */
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Imagem de fundo padrão para o slider */
.slide:nth-child(1) { 
    background-image: url('../img/images/dom-background-01.svg'); 
}
.slide:nth-child(2) { 
    background-image: url('../img/images/dom-background.svg'); 
}
.slide:nth-child(3) { 
    background-image: url('../img/images/dom-background_03.svg'); 
}

/* Container do conteúdo - CORRIGIDO para centralização perfeita */
.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 30px;
    width: 100%;
    /* Centralização perfeita usando flex do slide */
    margin: 0 auto;
    /* Remover qualquer transform que possa variar */
    transform: none !important;
    top: auto !important;
    left: auto !important;
    /* Garantir opacidade consistente */
    opacity: 1 !important;
}

/* Garantir que o texto tenha sempre a mesma opacidade */
.slide-content h1,
.slide-content p,
.slide-content .btn-hero {
    opacity: 1 !important;
    color: #ffffff;
}

.slide-content h1 {
    color: #ffffff !important;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease-out;
    font-weight: 700;
}

.slide-content p {
    color: #ffffff !important;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-secondary);
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255,127,0,0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-hero-v2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: var(--dark);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255,127,0,0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-hero:hover {
   background: #ffffff;
   color: var(--secondary);
   transition: var(--transition-slow); 
}

.btn-hero-v2:hover {
   background: var(--gradient-primary);
   color: #fff;
   transition: var(--transition-slow);
}

/* Botões de navegação laterais */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.15);
    color: #ffffff !important;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slider-nav:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(255,127,0,0.4);
}

.slider-nav.prev-slide {
    left: 30px;
}

.slider-nav.next-slide {
    right: 30px;
}

/* Dots na parte inferior */
.slider-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
    padding: 10px 20px;
    border-radius: 40px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--secondary);
    transform: scale(1.2);
}

.dot.active::after {
    border-color: var(--secondary);
}

/* Onda decorativa */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 15;
    line-height: 0;
    pointer-events: none;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 150px;
    fill: #ffffff;
}

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

/* Responsividade */
@media (max-width: 992px) {
    .hero {
        min-height: 600px;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hero-wave svg {
        height: 100px;
    }
    
    .slider-dots {
        bottom: 100px;
    }
}

@media (max-width: 768px) {
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .hero-wave svg {
        height: 80px;
    }
    
    .slider-dots {
        bottom: 90px;
        gap: 12px;
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .slider-nav {
        display: none;
    }
    
    .hero-wave svg {
        height: 60px;
    }
    
    .slider-dots {
        bottom: 80px;
    }
}

/* ================= SEÇÕES PADRÃO ================= */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Decoração de título */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    margin: 25px auto 0;
    border-radius: 2px;
}

.section-header h2 {
    margin-bottom: 15px;
}

/* ================= DIFERENCIAIS ================= */
.diferenciais {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.diferenciais::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,127,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.diferenciais::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(10,61,98,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.diferencial-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10,61,98,0.05);
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: var(--transition-base);
}

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

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

.diferencial-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255,127,0,0.1) 0%, rgba(255,127,0,0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-base);
    position: relative;
}

.diferencial-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(255,127,0,0.2);
    transition: var(--transition-base);
}

.diferencial-card:hover .diferencial-icon {
    background: var(--gradient-secondary);
    transform: scale(1.1) rotate(5deg);
}

.diferencial-card:hover .diferencial-icon::after {
    transform: rotate(-10deg);
    border-color: var(--secondary);
}

.diferencial-icon i {
    font-size: 2.2rem;
    color: var(--secondary);
    transition: var(--transition-base);
}

.diferencial-card:hover .diferencial-icon i {
    color: var(--white);
}

.diferencial-card h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.diferencial-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ================= CICLOS DE ENSINO ================= */
.ciclos-ensino {
    background: var(--white);
    position: relative;
}

.ciclos-ensino::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-gray), transparent);
}

.ciclos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ciclo-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--light-gray);
    position: relative;
}

.ciclo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 3px solid transparent;
    transition: var(--transition-base);
    pointer-events: none;
}

.ciclo-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.ciclo-card:hover::after {
    border-color: var(--secondary);
}

.ciclo-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.ciclo-card:hover .ciclo-image img {
    transform: scale(1.1);
}

.ciclo-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    opacity: 0.3;
    transition: var(--transition-base);
}

.ciclo-card:hover .ciclo-image::after {
    opacity: 0.5;
}

.ciclo-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.ciclo-content {
    padding: 30px;
}

.ciclo-content h3 {
    font-family: var(--font-primary);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.ciclo-content > p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.ciclo-lista {
    list-style: none;
    margin-bottom: 25px;
}

.ciclo-lista li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--light-gray);
}

.ciclo-lista li:last-child {
    border-bottom: none;
}

.ciclo-lista i {
    color: var(--secondary);
    font-size: 0.85rem;
    width: 20px;
    height: 20px;
    background: rgba(255,127,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ciclo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.95rem;
}

.ciclo-link i {
    transition: var(--transition-base);
}

.ciclo-link:hover {
    color: var(--secondary);
}

.ciclo-link:hover i {
    transform: translateX(5px);
}

/* ================= INFRAESTRUTURA ================= */
.infraestrutura {
    background: linear-gradient(135deg, #1A2C54 0%, #0C223E 100%);
    position: relative;
    overflow: hidden;
}

.infraestrutura::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.infraestrutura h2,
.infraestrutura .section-subtitle {
    color: var(--white);
}

.infraestrutura .section-subtitle {
    opacity: 0.9;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.infra-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid rgba(255,255,255,0.15);
}

.infra-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-8px);
    border-color: var(--secondary);
}

.infra-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(255,127,0,0.3);
}

.infra-item:hover .infra-icon {
    transform: rotate(10deg) scale(1.1);
}

.infra-icon i {
    font-size: 2rem;
    color: var(--white);
}

.infra-item h3 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.infra-item p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ================= PARCEIROS ================= */
.parceiros {
    background: var(--off-white);
    position: relative;
}

.parceiros::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, var(--white) 0%, transparent 100%);
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.parceiro-logo {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.parceiro-logo:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.parceiro-logo img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: var(--transition-base);
    margin-bottom: 15px;
}

.parceiro-logo:hover img {
    filter: grayscale(0%);
}

.parceiro-logo p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* ================= DEPOIMENTOS ================= */
.depoimentos {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.depoimentos::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 5%;
    font-size: 400px;
    font-family: var(--font-display);
    color: var(--primary-dark);
    opacity: 0.03;
    line-height: 1;
    pointer-events: none;
}

.depoimentos-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.depoimento-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition-base);
    position: relative;
    border: 1px solid var(--light-gray);
}

.depoimento-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    font-family: var(--font-display);
    color: var(--secondary);
    opacity: 0.2;
    line-height: 1;
}

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

.depoimento-texto {
    margin-bottom: 25px;
}

.depoimento-texto p {
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--dark-gray);
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.autor-foto {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.autor-info h4 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.autor-info p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ================= CTA MATRÍCULAS ================= */
.cta-matriculas {
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-matriculas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.1'/%3E%3Ccircle cx='50' cy='50' r='25' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.08'/%3E%3C/svg%3E");
    animation: rotate-bg 60s linear infinite;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-content > p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    background: var(--white);
    color: var(--secondary);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px);
}

.btn-cta-outline {
    background: #ea7302;
    color: var(--white);
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition-base);
    border: 2px solid var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-outline:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-5px);
}

/* ================= NOTÍCIAS ================= */
.noticias-home {
    background: var(--off-white);
    position: relative;
}

.noticias-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.noticias-header h2 {
    text-align: left;
    margin-bottom: 0;
}

.ver-todas {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    padding: 12px 25px;
    border-radius: 50px;
    border: 2px solid var(--primary);
}

.ver-todas:hover {
    background: var(--primary);
    color: var(--white);
}

.ver-todas i {
    transition: var(--transition-base);
}

.ver-todas:hover i {
    transform: translateX(5px);
}

.noticias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.noticia-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 1px solid var(--light-gray);
}

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

.noticia-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.noticia-card:hover .noticia-image img {
    transform: scale(1.1);
}

.noticia-categoria {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.noticia-content {
    padding: 25px;
}

.noticia-content h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
}

.noticia-content h3 a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

.noticia-content h3 a:hover {
    color: var(--secondary);
}

.noticia-data {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.noticia-content > p:last-child {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

/* ================= FOOTER ================= */
.main-footer {
    background: var(--black);
    position: relative;
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-col {
    color: var(--white);
}

.footer-logo {
    height: 150px;
    margin-bottom: 20px;
}

.footer-col > p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-footer {
    display: flex;
    gap: 12px;
}

.social-footer a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.social-footer a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.footer-col h3 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contato li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px !important;
}

.footer-contato i {
    color: var(--secondary);
    width: 20px;
    margin-top: 4px;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(37,211,102,0.4);
    transition: var(--transition-base);
    z-index: 500;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37,211,102,0.5);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 5px 25px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 5px 25px rgba(37,211,102,0.4), 0 0 0 15px rgba(37,211,102,0); }
}

/* ================= MODAL ================= */

/* ── Overlay ── */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal[style*="display: block"] {
    display: flex !important;
}

.modal.open {
    display: flex;
}

/* ── Container ── */
.modal-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    max-height: 96vh;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.28);
    overflow-y: auto;
    animation: modalIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-container::-webkit-scrollbar { width: 5px; }
.modal-container::-webkit-scrollbar-track { background: transparent; }
.modal-container::-webkit-scrollbar-thumb { background: #E66F00; border-radius: 99px; }

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.93) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Close button ── */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 18px;
    transition: background 0.18s, transform 0.18s, color 0.18s;
    z-index: 10;
}
.modal-close:hover {
    background: #fee4cc;
    color: #E66F00;
    transform: rotate(90deg);
}

/* ── Header ── */
.modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 28px 22px;
    border-bottom: 1px solid #f3f4f6;
}
.modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #FFF3E6;
    border: 1px solid #FBCFA0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.modal-icon img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 14px;
}
.modal-header-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 4px;
}
.modal-header-text p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.45;
}

/* ── Form ── */
.modal-form {
    padding: 22px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 10px;
}
.form-row.single { flex-direction: column; }

/* ── Field ── */
.field {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.field-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
    color: #9ca3af;
    pointer-events: none;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* date field label sits at top */
.field.has-label .field-icon {
    top: 13px;
    transform: none;
}

.field-label {
    position: absolute;
    left: 38px;
    top: 8px;
    font-size: 10.5px;
    font-weight: 600;
    color: #E66F00;
    letter-spacing: 0.02em;
    pointer-events: none;
    text-transform: uppercase;
}

.field input,
.field select {
    height: 48px;
    padding: 0 14px 0 38px;
    font-size: 14px;
    font-family: inherit;
    color: #111827;
    background: #fafafa;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
    width: 100%;
}

/* date input: label above → shift text down */
.field.has-label input[type="date"] {
    height: 52px;
    padding-top: 20px;
    padding-bottom: 4px;
    font-size: 13px;
}

.field input:hover,
.field select:hover { border-color: #d1d5db; }

.field input:focus,
.field select:focus {
    border-color: #E66F00;
    box-shadow: 0 0 0 3px rgba(230,111,0,0.12);
    background: #ffffff;
}

.field input::placeholder { color: #9ca3af; }

/* select arrow */
.field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    background-color: #fafafa;
    cursor: pointer;
    color: #6b7280;
}
.field select.selected { color: #111827; }

/* ── Checkbox LGPD ── */
.lgpd-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 4px 0 6px;
}
.lgpd-row input[type="checkbox"] { display: none; }
.checkbox-box {
    width: 19px;
    height: 19px;
    border: 1.5px solid #d1d5db;
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
    margin-top: 1px;
}
.lgpd-row input:checked ~ .checkbox-box,
.checkbox-box.checked {
    background: #E66F00;
    border-color: #E66F00;
}
.checkbox-box i {
    font-size: 13px;
    color: white;
    opacity: 0;
    transition: opacity 0.15s;
}
.lgpd-row input:checked ~ .checkbox-box i,
.checkbox-box.checked i { opacity: 1; }
.lgpd-text {
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.5;
    cursor: pointer;
    user-select: none;
}
.lgpd-text a {
    color: #E66F00;
    text-decoration: none;
}
.lgpd-text a:hover { text-decoration: underline; }

/* ── Submit ── */
.modal-submit {
    width: 100%;
    height: 50px;
    background: #E66F00;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s, gap 0.2s;
    margin-top: 4px;
}
.modal-submit i { font-size: 19px; }
.modal-submit:hover {
    background: #CC5C00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(230,111,0,0.38);
    gap: 14px;
}
.modal-submit:active { transform: translateY(0); box-shadow: none; }

/* ── Responsive ── */
@media (max-width: 520px) {
    .modal-container { border-radius: 20px; }
    .modal-header { padding: 22px 20px 18px; }
    .modal-form { padding: 18px 20px 24px; }
    .form-row { flex-direction: column !important; }
}

/* ================= ANIMAÇÕES DE SCROLL ================= */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Delay para animações em sequência */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ================= UTILIDADES ================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 10px !important; }
.mb-2 { margin-bottom: 20px !important; }
.mb-3 { margin-bottom: 30px !important; }
.mb-4 { margin-bottom: 40px !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 10px !important; }
.mt-2 { margin-top: 20px !important; }
.mt-3 { margin-top: 30px !important; }
.mt-4 { margin-top: 40px !important; }