/* Adobe Garamond Pro Font */
@font-face {
    font-family: "Adobe Garamond Pro";
    src: url('../font/AGaramondPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Adobe Garamond Pro";
    src: url('../font/AGaramondPro-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Adobe Garamond Pro";
    src: url('../font/AGaramondPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Adobe Garamond Pro";
    src: url('../font/AGaramondPro-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* 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;
}

html {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body {
    font-family: "Adobe Garamond Pro", sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    position: relative;
}

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Navbar Clean Style */
.navbar-custom {
    background: #fafafa;
    backdrop-filter: none;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
    box-shadow: none;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    min-height: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden !important;
    position: relative;
    box-sizing: border-box;
    margin: 0;
}

.navbar-custom .container {
    position: relative;
    padding: 0.5rem 0.75rem;
    max-width: 100%;
    overflow: hidden !important;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.navbar-custom .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Garantir que não haja overflow no navbar */
.navbar-custom * {
    max-width: 100%;
}

.navbar-custom .container > * {
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        flex-grow: 1;
        width: 100%;
        max-width: 100%;
        overflow: hidden !important;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }

    .navbar-nav {
        flex-wrap: nowrap;
        overflow: visible;
        margin: 0;
        padding: 0;
    }
}

.navbar-nav-left {
    flex: 0 1 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.15rem;
    min-width: 0;
    max-width: calc(50% - 220px);
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.navbar-nav-right {
    flex: 0 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.15rem;
    min-width: 0;
    max-width: calc(50% - 220px);
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.navbar-brand-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    letter-spacing: 0.2px;
    z-index: 10;
    line-height: 1.2;
    max-width: 400px;
    width: auto;
    flex-shrink: 0;
    white-space: normal;
    margin: 0;
    padding: 0 0.75rem;
    box-sizing: border-box;
}

.navbar-brand-center:hover {
    color: var(--primary-dark) !important;
    transform: translateX(-50%);
}

.navbar-brand-text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    white-space: normal;
    letter-spacing: 5.5px;
}

.navbar-logo {
    height: 55px;
    width: auto;
    max-width: 55px;
    max-height: 55px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.navbar-brand-center:hover .navbar-logo {
    transform: none;
}

.navbar-brand-mobile {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.navbar-brand-mobile:hover {
    color: var(--primary-dark) !important;
}

@media (min-width: 992px) {
    .navbar-brand-mobile {
        display: none !important;
    }
    
    .navbar-brand-center {
        display: flex !important;
    }
}

@media (max-width: 991.98px) {
    .navbar-brand-center {
        display: none !important;
    }
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 200;
    padding: 0.4rem 0.4rem !important;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    white-space: nowrap;
    flex-shrink: 1;
    margin: 0;
    box-sizing: border-box;
}

.nav-item {
    margin: 0;
    padding: 0;
}

.nav-link::before {
    display: none;
}

.nav-link:hover {
    color: var(--primary-dark) !important;
    background-color: transparent;
    transform: none;
}

.nav-link-cta {
    font-weight: 600 !important;
}

.navbar-toggler {
    border-color: var(--primary-color);
    order: -1;
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(91, 12, 25, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* 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: flex-start;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.hero-text-container {
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 2rem;
    color: var(--bg-light);
    line-height: 1.3;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-highlight {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #d4af37;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.cta-button {
    background: var(--primary-color);
    color: var(--bg-light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--bg-light);
    text-decoration: none;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-top: 3rem;
    width: 100%;
}

.hero-stat-item {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    text-align: left;
    color: var(--bg-light);
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    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;
}

/* História e Pilares Section */
.historia-pilares-section {
    background: var(--bg-light);
    min-height: 100vh;
    position: relative;
}

.historia-col {
    background: var(--bg-light);
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.historia-content {
    max-width: 600px;
    margin: 0 auto;
}

.historia-cta {
    margin-top: 2rem;
}

.pilares-col {
    background: var(--bg-light);
    padding: 0;
    height: 100vh;
    overflow-y: auto;
    position: relative;
}

.pilares-scroll-container {
    padding: 5rem 4rem;
}

.pilares-title {
    margin-bottom: 3rem;
    text-align: left;
}

.pilar-card {
    margin-bottom: 3rem;
    position: relative;
}

.pilar-image-overlay {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 8px;
}

.pilar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pilar-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    justify-content: space-between;
}

.pilar-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: auto;
}

.pilar-text-overlay {
    color: white;
}

.pilar-title-overlay {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.pilar-description-overlay {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    margin: 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;
    padding: 1rem 0;
}

.ciclo-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.ciclo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.ciclo-image-overlay {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.ciclo-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ciclo-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.ciclo-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 15%, rgba(0, 0, 0, 0.55) 30%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.2) 85%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.ciclo-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: "Adobe Garamond Pro", sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}

.ciclo-card-text {
    font-size: 18px;
    font-weight: 400;
    color: #A27035;
    line-height: 1.5;
    letter-spacing: 0.11em;
    margin: 0;
  
    font-family: "Adobe Garamond Pro", sans-serif;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}

/* 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: #f5f5f5;
    padding: 5rem 0;
    position: relative;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.4;
    font-family: "Adobe Garamond Pro", sans-serif;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-field {
    margin-bottom: 1.5rem;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: var(--text-primary);
    font-family: "Adobe Garamond Pro", sans-serif;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(91, 12, 25, 0.1);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Adobe Garamond Pro", sans-serif;
    cursor: pointer;
}

.newsletter-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 12, 25, 0.3);
    color: white;
}

.newsletter-submit-btn:active {
    transform: translateY(0);
}

/* Footer Section */
.footer-section {
    background: #e5e5e5;
    color: #333;
    padding: 4rem 0 3rem;
    position: relative;
}

.footer-logo-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo-shield {
    /* width: 60px; */
    height: auto;
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1;
    font-family: "Adobe Garamond Pro", sans-serif;
    letter-spacing: 0.05em;
}

.footer-logo-subtitle {
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem;
}

.footer-logo-subtitle span {
    font-size: 0.9rem;
    color: #000;
    line-height: 1.3;
    font-family: "Adobe Garamond Pro", sans-serif;
    font-weight: 400;
}

.footer-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-family: "Adobe Garamond Pro", sans-serif;
}

.footer-title-social {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-family: sans-serif;
}

.footer-links a i {
    font-size: 0.7rem;
    margin-right: 0.5rem;
    color: #999;
}

.footer-links a:hover {
    color: #666;
}

.footer-contact {
    margin-bottom: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    color: #999;
    font-size: 0.95rem;
    font-family: sans-serif;
}

.contact-item i {
    color: #999;
    margin-right: 0.5rem;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-item a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #666;
}

.footer-social {
    margin-top: 0.5rem;
}

.social-link-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-link-instagram:hover {
    background: var(--primary-dark);
    color: white;
}

.social-link-instagram i {
    font-size: 1.2rem;
    color: white;
}

.footer-address {
    margin-top: 0.5rem;
}

.footer-address-text {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-family: sans-serif;
}

/* 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: "Adobe Garamond Pro", sans-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-list {
    max-width: 1000px;
    margin: 0 auto;
}

.cultura-item {
    margin-bottom: 0;
}

.cultura-item-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    padding: 2rem 0;
    align-items: start;
}

.cultura-item-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
    font-family: "Adobe Garamond Pro", sans-serif;
}

.cultura-item-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.cultura-divider {
    height: 1px;
    background: #e0e0e0;
    width: 100%;
    margin: 0;
}

.cultura-item:last-child .cultura-divider {
    display: none;
}

/* 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: 0;
    display: flex;
    align-items: flex-start;
}

.academico-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-radius: 15px;
    background: white;

}

.academico-image img:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.academico-content {
    position: relative;
    z-index: 2;
    padding: 0;
}

.academico-list-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: left;
    font-family: "Adobe Garamond Pro", sans-serif;
}

.academico-list {
    max-width: 100%;
}

.academico-list-item {
    margin-bottom: 0;
}

.academico-list-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.academico-list-button:hover {
    color: var(--primary-color);
}

.academico-list-button:focus {
    box-shadow: none;
    outline: none;
}

.academico-list-button span {
    flex: 1;
}

.academico-plus-icon {
    color: #ff8c42;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.academico-list-button:not(.collapsed) .academico-plus-icon {
    transform: rotate(45deg);
}

.academico-divider {
    height: 1px;
    background: #e0e0e0;
    width: 100%;
    margin: 0;
}

.academico-list-item:last-child .academico-divider {
    display: none;
}

.academico-accordion .accordion-collapse {
    border: none;
}

.academico-accordion .accordion-button {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    background-color: transparent;
    border: none;
    padding: 0;
}

.academico-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: inherit;
    box-shadow: none;
}

.academico-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.academico-accordion .accordion-button::after {
    display: none;
}

.academico-accordion .accordion-body {
    padding: 1rem 0 1.5rem 0;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: transparent;
}

/* 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;
}

.academico-accordion .accordion-item {
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
}

.academico-accordion .accordion-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.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: 991.98px) {
    .container,
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .col,
    [class*="col-"] {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .navbar-collapse {
        padding: 1rem 0;
        flex-direction: column !important;
        align-items: stretch !important;
        display: none !important;
        max-width: 100%;
    }

    .navbar-collapse.show {
        display: flex !important;
    }

    .navbar-brand-center {
        position: static;
        transform: none;
        justify-content: center;
        margin: 1rem 0;
        order: 1;
        max-width: 100%;
    }

    .navbar-nav-left,
    .navbar-nav-right {
        flex: none;
        width: 100%;
        justify-content: center;
        max-width: 100%;
    }

    .navbar-nav-left {
        order: 0;
    }

    .navbar-nav-right {
        order: 2;
    }

    .navbar-nav {
        background: rgba(248, 249, 250, 0.98);
        border-radius: 12px;
        padding: 0.75rem;
        margin-top: 0.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }

    .navbar-nav .nav-link {
        padding: 0.65rem 1rem !important;
        text-align: center;
        color: var(--primary-color) !important;
    }

    .navbar-toggler {
        display: block !important;
    }

    .historia-pilares-section {
        min-height: auto;
        overflow-x: hidden;
    }

    .historia-col {
        padding: 3rem 1.5rem;
        height: auto;
        position: static;
        overflow-y: visible;
        max-width: 100%;
    }

    .historia-content {
        max-width: 100%;
    }

    .pilares-col {
        height: auto;
        overflow-y: visible;
        max-width: 100%;
    }

    .pilares-scroll-container {
        padding: 3rem 1.5rem;
        max-width: 100%;
    }

    .pilar-image-overlay {
        height: 450px;
    }

    .pilar-title-overlay {
        font-size: 1.75rem;
    }

    .pilar-description-overlay {
        font-size: 0.95rem;
    }

    .hero-section {
        min-height: auto;
        padding-top: 100px;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 1.5rem;
        height: auto;
        min-height: calc(100vh - 100px);
    }

    .hero-text-container {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-logo {
        height: 50px;
        max-width: 50px;
        max-height: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text-container {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
        align-self: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .hero-stat-item {
        width: 180px;
        min-width: 180px;
        max-width: 180px;
        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-item-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .cultura-item-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .cultura-item-text {
        font-size: 0.95rem;
    }
    
    .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(3, 1fr);
        gap: 1.5rem;
    }

    .ciclo-image-overlay {
        height: 400px;
    }

    .ciclo-card-title {
        font-size: 1.75rem;
    }

    .ciclo-card-text {
        font-size: 1rem;
    }

    .ciclo-content-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .admissao-timeline::before {
        left: 40px;
    }

    .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;
    }
    
    .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;
        position: relative;
    }
    
    .carousel-control-prev {
        left: 0;
        margin-right: 0.5rem;
    }
    
    .carousel-control-next {
        right: 0;
        margin-left: 0.5rem;
    }
    
    .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) {
    .container,
    .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .col,
    [class*="col-"] {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-logo {
        height: 45px;
        max-width: 45px;
        max-height: 45px;
    }

    .navbar-custom {
        padding: 0.6rem 0;
    }

    .navbar-custom .container {
        padding: 0.4rem 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-text-container {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .hero-stats {
        justify-content: center;
        align-self: center;
        flex-direction: column;
        width: 100%;
        padding: 0 0.5rem;
    }

    .hero-stat-item {
        width: 100%;
        min-width: auto;
        max-width: 100%;
    }
    
    .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;
    }

    .historia-pilares-section {
        min-height: auto;
        overflow-x: hidden;
    }

    .historia-col {
        padding: 3rem 1rem;
        height: auto;
        position: static;
        overflow-y: visible;
        max-width: 100%;
    }

    .historia-content {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .pilares-col {
        height: auto;
        overflow-y: visible;
        max-width: 100%;
    }

    .pilares-scroll-container {
        padding: 3rem 1rem;
        max-width: 100%;
    }

    .carousel-control-prev,
    .carousel-control-next {
        position: relative;
        left: 0;
        right: 0;
        width: 40px;
        height: 40px;
        margin: 0 0.5rem;
    }

    .carousel-control-prev {
        left: 0;
    }

    .carousel-control-next {
        right: 0;
    }

    .ciclos-section .carousel-control-prev,
    .ciclos-section .carousel-control-next {
        position: relative;
        left: 0;
        right: 0;
        width: 40px;
        height: 40px;
        margin: 0 0.5rem;
    }

    .ciclos-section .carousel-control-prev {
        left: 0;
    }

    .ciclos-section .carousel-control-next {
        right: 0;
    }

    .ciclos-section .carousel-inner {
        max-width: 100%;
        overflow-x: hidden;
    }

    .ciclo-item {
        max-width: 100%;
    }

    .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    section {
        overflow-x: hidden;
        max-width: 100%;
    }

    .pilar-image-overlay {
        height: 400px;
    }

    .pilar-title-overlay {
        font-size: 1.5rem;
    }

    .pilar-description-overlay {
        font-size: 0.9rem;
    }

    .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-item-content {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.25rem 0;
    }

    .cultura-item-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .cultura-item-text {
        font-size: 0.9rem;
    }
    
    .academico-image {
        padding: 1rem 0;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .academico-content {
        padding: 1rem 0;
    }
    
    .ciclos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ciclo-image-overlay {
        height: 350px;
    }

    .ciclo-card-title {
        font-size: 1.5rem;
    }

    .ciclo-card-text {
        font-size: 0.95rem;
    }

    .ciclo-content-overlay {
        padding: 1.25rem 1rem 1rem;
    }
    
    .admissao-title {
        font-size: 1.1rem;
    }
    
    .newsletter-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .newsletter-input {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .newsletter-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .accordion-button {
        font-size: 0.95rem;
        padding: 0.875rem 1rem;
    }
    
    .newsletter-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .newsletter-input {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }

    .newsletter-submit-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .footer-section {
        padding: 3rem 0 2rem;
    }
    
    .footer-logo-name {
        font-size: 2rem;
    }
    
    .footer-logo-subtitle span {
        font-size: 0.85rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    
    .accordion-body {
        font-size: 0.9rem;
    }
    
    .footer-section {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-logo-container {
        flex-direction: column;
        gap: 0.75rem;

    }
    
    .footer-logo-shield {
        width: 50px;
    }
    
    .footer-logo-name {
        font-size: 1.75rem;
    }
    
    .footer-logo-subtitle span {
        font-size: 0.8rem;
    }
    
    .footer-title {
        font-size: 0.95rem;
    }
    
    
    
    .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; }

