/* Google Fonts - Adobe Garamond Pro equivalent (EB Garamond) */

/* Clean modern theme for Escola Cristã Clássica */
:root {
    --primary-color: #5b0c19;
    --primary-dark: #4a0a16;
    --primary-light: #6d1a2a;
    --accent-color: #a27035;
    --accent-light: #b8863c;
    --bg-light: #f8f9fa;
    --bg-card: #ffffff;
    --bg-hover: #f1f3f4;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    --border-radius: 8px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'EB Garamond', serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar Clean Style */
.navbar-custom {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--bg-light) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
    transform: scale(1.05);
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.1);
}

.nav-link {
    color: rgba(248, 249, 250, 0.9) !important;
    font-weight: 500;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 249, 250, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--bg-light) !important;
    background-color: rgba(162, 112, 53, 0.2);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('../img/background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--bg-light);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-light);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-hover);
    color: var(--bg-light);
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

/* Hero Stats */
.hero-stats {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    color: var(--bg-light);
    min-width: 180px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(162, 112, 53, 0.1) 0%, rgba(91, 12, 25, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-stat-item:hover::before {
    opacity: 1;
}

.hero-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(162, 112, 53, 0.4);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero-stat-description {
    font-size: 1rem;
    color: rgba(248, 249, 250, 0.9);
    font-weight: 500;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

/* Quem Somos Section */
.quem-somos-section {
    background: var(--bg-light);
    padding: 5rem 0;
    position: relative;
}

.quem-somos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 12, 25, 0.02) 0%, rgba(162, 112, 53, 0.02) 100%);
    pointer-events: none;
}

.quem-somos-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
}

.video-container {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.video-player:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Estilo para o poster/thumbnail */
.video-player[poster] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Ciclos Escolares Section */
.ciclos-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

.ciclos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 0;
    padding: 0;
}

.ciclo-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.ciclo-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.ciclo-slide {
    height: 500px;
    background-size: calc(100% + 10px);
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: transparent;
    border: 2px solid rgba(162, 112, 53, 0.1);
    transition: all 0.3s ease;
}

.ciclo-slide:hover {
    border-color: var(--accent-color);
    transform: scale(1.02);
}

/* Estilos removidos - apenas imagens dos brasões são exibidas */

.ciclo-empty {
    visibility: hidden;
    pointer-events: none;
}

/* Carousel Controls Customization */
.ciclos-section .carousel-control-prev,
.ciclos-section .carousel-control-next {
    width: 5%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.ciclos-section .ciclo-item {
    position: relative;
    padding: 10px;
}

/* Linha de Caminho Animada */
.ciclos-path-line {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    margin: 0 auto 3rem auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(91, 12, 25, 0.3);
    animation: expandPath 2s ease-out 0.5s forwards;
}

@keyframes expandPath {
    0% {
        width: 0;
    }
    100% {
        width: 200px;
    }
}

.ciclos-section .carousel-control-prev:hover,
.ciclos-section .carousel-control-next:hover {
    background: rgba(91, 12, 25, 0.7);
    transform: scale(1.1);
}

.ciclos-section .carousel-control-prev-icon,
.ciclos-section .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
}

.ciclos-section .carousel-indicators {
    bottom: -3rem;
}

.ciclos-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(248, 249, 250, 0.5);
    border: 2px solid var(--primary-color);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.ciclos-section .carousel-indicators button.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Ciclo de Admissão Timeline */
.admissao-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* AOS Animation Overrides para Timeline */
.admissao-item[data-aos] {
    opacity: 0;
    transform: translateX(0);
}

.admissao-item[data-aos="fade-right"] {
    transform: translateX(-50px);
}

.admissao-item[data-aos="fade-left"] {
    transform: translateX(50px);
}

.admissao-item[data-aos].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.admissao-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.admissao-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.admissao-item:nth-child(odd) {
    flex-direction: row;
}

.admissao-item:nth-child(even) {
    flex-direction: row-reverse;
}

.admissao-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.admissao-content {
    flex: 1;
    background: var(--bg-light);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 0 2rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.admissao-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.admissao-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.admissao-item:nth-child(odd) .admissao-content::before {
    right: -30px;
    border-left-color: var(--bg-light);
}

.admissao-item:nth-child(even) .admissao-content::before {
    left: -30px;
    border-right-color: var(--bg-light);
}

.admissao-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--bg-card);
    padding: 5rem 0;
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 12, 25, 0.02) 0%, rgba(162, 112, 53, 0.02) 100%);
    pointer-events: none;
}

.newsletter-form-container {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.newsletter-form .form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.newsletter-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.newsletter-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(91, 12, 25, 0.25);
    background: var(--bg-light);
}

.newsletter-btn {
    background: var(--primary-color);
    color: var(--bg-light);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.newsletter-btn:hover {
    background: #4a0a15;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--bg-light);
}

.newsletter-btn:active {
    transform: translateY(0);
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.newsletter-btn:hover::before {
    left: 100%;
}

/* Footer Section */
.footer-section {
    background: var(--primary-color);
    color: var(--bg-light);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(162, 112, 53, 0.1) 100%);
    pointer-events: none;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(248, 249, 250, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-title {
    color: var(--bg-light);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(248, 249, 250, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact {
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(248, 249, 250, 0.9);
}

.contact-item i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(248, 249, 250, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-item span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-social {
    position: relative;
    z-index: 2;
}

.social-link {
    display: flex;
    align-items: center;
    color: rgba(248, 249, 250, 0.9);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.social-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.3rem;
    margin-right: 0.75rem;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(248, 249, 250, 0.2);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.copyright {
    color: rgba(248, 249, 250, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Pilares Section */
.pilares-section {
    background: var(--bg-card);
    padding: 5rem 0;
    position: relative;
}

.pilares-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 12, 25, 0.02) 0%, rgba(162, 112, 53, 0.02) 100%);
    pointer-events: none;
}

.pilar-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.pilar-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pilar-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0;
}

.pilar-image {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.pilar-image img {
    width: 100%;
    height: auto;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-radius: 15px;
}

.pilar-image img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Autores Carousel - Novo Design Clean */
.autor-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(162, 112, 53, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.autor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.autor-card:hover::before {
    transform: scaleX(1);
}

.autor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.autor-quote-container {
    margin-bottom: 2.5rem;
    text-align: center;
}

.autor-quote {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    position: relative;
    font-family: 'EB Garamond', serif;
}

.autor-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
    opacity: 0.3;
}

.autor-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-family: serif;
    opacity: 0.3;
}

.autor-source {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
    font-weight: 500;
}

.autor-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.autor-photo {
    flex-shrink: 0;
}

.autor-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.autor-card:hover .autor-img {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

/* Estilos para foto dupla (Kevin Clark & Ravi Jain) */
.autor-photo-dupla {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.autor-img-dupla {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.autor-card:hover .autor-img-dupla {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.autor-details {
    text-align: left;
}

.autor-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.autor-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* Carousel Customization - Apenas Setas */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: none !important;
    border: none !important;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: none !important;
    border: none !important;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    filter: none !important;
    mask: none !important;
    -webkit-mask: none !important;
}

/* Usar caracteres Unicode para as setas */
.carousel-control-prev-icon::before {
    content: "‹";
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
    display: block;
    line-height: 1;
}

.carousel-control-next-icon::before {
    content: "›";
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
    display: block;
    line-height: 1;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: none;
    margin: 0 5px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Cultura Section */
.cultura-section {
    background: var(--bg-light);
    padding: 5rem 0;
    position: relative;
}

.cultura-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 12, 25, 0.02) 0%, rgba(162, 112, 53, 0.02) 100%);
    pointer-events: none;
}

.cultura-card {
    background: var(--bg-card);
    border: 1px solid rgba(162, 112, 53, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.cultura-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.cultura-card:hover::before {
    transform: scaleX(1);
}

.cultura-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.cultura-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.cultura-card:hover .cultura-icon {
    transform: scale(1.1);
}

.cultura-icon i {
    font-size: 2rem;
    color: white;
}

.cultura-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cultura-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Acadêmico Section */
.academico-section {
    background: var(--bg-card);
    padding: 5rem 0;
    position: relative;
}

.academico-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 12, 25, 0.02) 0%, rgba(162, 112, 53, 0.02) 100%);
    pointer-events: none;
}

.academico-image {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.academico-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-radius: 15px;
}

.academico-image img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.academico-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

/* Accordion Customization */
.accordion {
    --bs-accordion-bg: var(--bg-card);
    --bs-accordion-border-color: rgba(162, 112, 53, 0.1);
    --bs-accordion-border-radius: 15px;
    --bs-accordion-inner-border-radius: 15px;
    --bs-accordion-btn-padding-x: 1.5rem;
    --bs-accordion-btn-padding-y: 1.25rem;
    --bs-accordion-btn-color: var(--primary-color);
    --bs-accordion-btn-bg: var(--bg-card);
    --bs-accordion-btn-focus-border-color: var(--primary-color);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(91, 12, 25, 0.25);
    --bs-accordion-body-padding-x: 1.5rem;
    --bs-accordion-body-padding-y: 1.25rem;
}

.accordion-item {
    border: 1px solid rgba(162, 112, 53, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--bg-card);
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(91, 12, 25, 0.25);
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235b0c19'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    background-color: var(--bg-card);
}

/* Stats Section */
.stats-section {
    background: var(--bg-light);
    padding: 5rem 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 12, 25, 0.02) 0%, rgba(162, 112, 53, 0.02) 100%);
    pointer-events: none;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(162, 112, 53, 0.1);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: countUp 2s ease-out;
}

.stat-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .hero-stat-item {
        min-width: 160px;
        padding: 1.25rem 1.5rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .pilar-title {
        font-size: 1.8rem;
    }
    
    .pilar-text {
        font-size: 1rem;
    }
    
    .cultura-card {
        padding: 1.5rem;
    }
    
    .cultura-icon {
        width: 70px;
        height: 70px;
    }
    
    .cultura-icon i {
        font-size: 1.8rem;
    }
    
    .cultura-title {
        font-size: 1.2rem;
    }
    
    .cultura-text {
        font-size: 0.9rem;
    }
    
    .academico-image {
        padding: 1.5rem 0;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .academico-content {
        padding: 1.5rem 0;
    }
    
    .ciclos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0;
    }
    
    /* Linha de caminho para tablet */
    .ciclos-path-line {
        height: 3px;
    }
    
    @keyframes expandPath {
        0% {
            width: 0;
        }
        100% {
            width: 150px;
        }
    }
    
    .ciclo-slide {
        height: 450px;
    }
    
    .ciclo-title {
        font-size: 1.8rem;
    }
    
    .ciclo-text {
        font-size: 1rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
    
    .accordion-body {
        font-size: 0.95rem;
    }
    
    .autor-card {
        padding: 2rem;
    }
    
    .autor-quote {
        font-size: 1.2rem;
    }
    
    .autor-quote::before,
    .autor-quote::after {
        font-size: 3rem;
    }
    
    .autor-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .autor-details {
        text-align: center;
    }
    
    .autor-img {
        width: 70px;
        height: 70px;
    }
    
    .autor-img-dupla {
        width: 60px;
        height: 60px;
    }
    
    .autor-name {
        font-size: 1.2rem;
    }
    
    .autor-description {
        font-size: 0.95rem;
    }
    
    .autor-source {
        font-size: 0.85rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-control-prev {
        left: -17px;
    }
    
    .carousel-control-next {
        right: -17px;
    }
    
    .carousel-control-prev-icon::before,
    .carousel-control-next-icon::before {
        font-size: 20px;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-logo {
        height: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stat-item {
        min-width: 140px;
        padding: 1rem 1.25rem;
    }
    
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-text {
        font-size: 0.95rem;
    }
    
    .quem-somos-content {
        padding: 1rem 0;
    }
    
    .video-container {
        padding: 1rem 0;
    }
    
    .pilar-title {
        font-size: 1.6rem;
    }
    
    .pilar-text {
        font-size: 0.95rem;
    }
    
    .pilar-content {
        padding: 1rem 0;
    }
    
    .pilar-image {
        padding: 1rem 0;
    }
    
    .cultura-card {
        padding: 1.25rem;
    }
    
    .cultura-icon {
        width: 60px;
        height: 60px;
    }
    
    .cultura-icon i {
        font-size: 1.5rem;
    }
    
    .cultura-title {
        font-size: 1.1rem;
    }
    
    .cultura-text {
        font-size: 0.85rem;
    }
    
    .academico-image {
        padding: 1rem 0;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .academico-content {
        padding: 1rem 0;
    }
    
    .ciclos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    /* Linha de caminho para mobile */
    .ciclos-path-line {
        height: 3px;
    }
    
    @keyframes expandPath {
        0% {
            width: 0;
        }
        100% {
            width: 120px;
        }
    }
    
    .ciclo-slide {
        height: 400px;
    }
    
    .ciclo-title {
        font-size: 1.5rem;
    }
    
    .ciclo-text {
        font-size: 0.9rem;
    }
    
    .ciclo-content {
        padding: 1rem;
    }
    
    .admissao-timeline::before {
        left: 30px;
    }
    
    .admissao-item {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .admissao-content {
        margin: 0 0 0 1rem;
    }
    
    .admissao-content::before {
        left: -30px !important;
        right: auto !important;
        border-right-color: var(--bg-light) !important;
        border-left-color: transparent !important;
    }
    
    .admissao-title {
        font-size: 1.1rem;
    }
    
    .newsletter-form-container {
        padding: 2rem;
    }
    
    .newsletter-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .accordion-button {
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }
    
    .newsletter-form-container {
        padding: 1.5rem;
    }
    
    .newsletter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .footer-section {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-logo-img {
        max-width: 150px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .accordion-body {
        font-size: 0.9rem;
    }
    
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .footer-logo-img {
        max-width: 120px;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-item span {
        font-size: 0.85rem;
    }
    
    .social-link {
        font-size: 0.9rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .autor-card {
        padding: 1.5rem;
    }
    
    .autor-quote {
        font-size: 1.1rem;
    }
    
    .autor-quote::before,
    .autor-quote::after {
        font-size: 2.5rem;
    }
    
    .autor-info {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .autor-details {
        text-align: center;
    }
    
    .autor-img {
        width: 60px;
        height: 60px;
    }
    
    .autor-img-dupla {
        width: 50px;
        height: 50px;
    }
    
    .autor-name {
        font-size: 1.1rem;
    }
    
    .autor-description {
        font-size: 0.9rem;
    }
    
    .autor-source {
        font-size: 0.8rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 30px;
        height: 30px;
    }
    
    .carousel-control-prev {
        left: -15px;
    }
    
    .carousel-control-next {
        right: -15px;
    }
    
    .carousel-control-prev-icon::before,
    .carousel-control-next-icon::before {
        font-size: 18px;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Loading animation for stats */
.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
