/* ====== MOBILE-FIRST + ANTI-OVERFLOW (camada global segura) ====== */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, canvas, svg, iframe { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.footer a, .contact-item, .info-item { overflow-wrap: anywhere; word-wrap: break-word; }

/* Menu mobile: abre via .active (usado no header.js) */
.mobile-nav { display: none; }
.mobile-nav.active { display: block; }

/* Footer em 1 coluna no mobile */
@media (max-width: 767.98px) {
  .footer-grid { display: grid; grid-template-columns: 1fr !important; gap: 1.25rem; }
}

/* ====== (SEU CSS ORIGINAL A PARTIR DAQUI) ====== */

/* Escola Santa Teresinha - Professional CSS for HostGator */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables - Heritage Colors */
:root {
    /* Capuchin Heritage Colors */
    --capuchin-blue: #1E3A8A;
    --capuchin-light: #38BDF8;
    --capuchin-gold: #F59E0B;
    --sacred-white: #FFFFFF;
    
    /* Semantic Colors */
    --background: #FFFFFF;
    --foreground: #1F2937;
    --muted-foreground: #6B7280;
    --border: #E5E7EB;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heritage: 0 10px 30px -10px rgba(30, 58, 138, 0.15);
    --shadow-gold: 0 0 20px rgba(245, 158, 11, 0.3);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Typography */
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--capuchin-blue);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-heritage {
    background: linear-gradient(135deg, var(--capuchin-blue), var(--capuchin-light));
    color: var(--sacred-white);
    box-shadow: var(--shadow-heritage);
}

.btn-heritage:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-gold {
    background: linear-gradient(135deg, var(--capuchin-gold), #FCD34D);
    color: var(--capuchin-blue);
    box-shadow: var(--shadow-lg);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heritage);
}

.btn-capuchin {
    background-color: var(--capuchin-blue);
    color: var(--sacred-white);
}

.btn-capuchin:hover {
    background-color: var(--capuchin-light);
}

.btn-sacred {
    background-color: var(--sacred-white);
    color: var(--capuchin-blue);
    border: 2px solid var(--capuchin-blue);
}

.btn-sacred:hover {
    background-color: var(--capuchin-blue);
    color: var(--sacred-white);
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
}

.badge-heritage {
    background-color: var(--capuchin-gold);
    color: var(--capuchin-blue);
    box-shadow: var(--shadow-gold);
}

/* Header Styles */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-bar {
    background-color: var(--capuchin-blue);
    color: var(--sacred-white);
    padding: 0.5rem 0;
}

.contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.heritage-message {
    color: var(--capuchin-gold);
    font-weight: 600;
}

.main-nav {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 3rem;
    width: 3rem;
}

.school-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--capuchin-blue);
    margin: 0;
}

.school-location {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: var(--capuchin-blue);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--capuchin-light);
}

.cta-section {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 1.5rem;
    height: 2px;
    background-color: var(--capuchin-blue);
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--capuchin-blue);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--capuchin-light);
}

.mobile-cta {
    margin-top: 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(30, 58, 138, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--sacred-white);
    padding: 2rem 0;
}

.hero-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.highlight {
    color: var(--capuchin-gold);
    font-weight: 600;
}

.hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    font-size: 1.125rem;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.hero-location .icon {
    color: var(--capuchin-gold);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    animation: scaleIn 0.5s ease-out 0.6s both;
}

.hero-heritage {
    animation: fadeIn 0.6s ease-out 0.8s both;
}

.heritage-main {
    font-size: 1.125rem;
    color: var(--capuchin-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.heritage-sub {
    font-size: 0.875rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--sacred-white);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background-color: var(--sacred-white);
    border-radius: 0.125rem;
    margin-top: 0.5rem;
    animation: pulse 1s infinite;
}

/* Education Section */
.education-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--sacred-white), #F8FAFC);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--capuchin-blue);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

.education-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 5rem;
}

.education-card {
    background-color: var(--sacred-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: none;
}

.education-card:hover {
    box-shadow: var(--shadow-heritage);
    transform: translateY(-0.5rem);
}

.card-content {
    padding: 2rem;
    text-align: center;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.card-icon-light {
    background-color: var(--capuchin-light);
    color: var(--sacred-white);
}

.card-icon-blue {
    background-color: var(--capuchin-blue);
    color: var(--sacred-white);
}

.card-icon-gold {
    background-color: var(--capuchin-gold);
    color: var(--sacred-white);
}

.education-card:hover .card-icon {
    transform: scale(1.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--capuchin-blue);
    margin-bottom: 0.5rem;
}

.card-subtitle {
    color: var(--capuchin-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.card-highlights {
    list-style: none;
    margin-bottom: 1.5rem;
}

.card-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.card-highlights .icon {
    color: var(--capuchin-gold);
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
}

.section-cta {
    text-align: center;
}

.cta-heritage {
    background: linear-gradient(135deg, var(--capuchin-blue), var(--capuchin-light));
    border-radius: 1rem;
    padding: 2rem;
    color: var(--sacred-white);
    box-shadow: var(--shadow-heritage);
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cta-icon .icon {
    width: 2rem;
    height: 2rem;
    color: var(--capuchin-gold);
}

.cta-heritage h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sacred-white);
    margin: 0;
}

.cta-heritage p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* Heritage Section */
.heritage-section {
    padding: 5rem 0;
    background-color: var(--background);
}

.heritage-story {
    display: grid;
    gap: 3rem;
    margin-bottom: 5rem;
}

.heritage-image {
    position: relative;
}

.story-img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-heritage);
}

.since-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--capuchin-gold);
    color: var(--capuchin-blue);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.heritage-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.heritage-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--capuchin-blue);
    margin-bottom: 1.5rem;
}

.heritage-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.values-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-card {
    background-color: var(--sacred-white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--capuchin-blue);
    margin-bottom: 0.5rem;
}

.value-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Timeline */
.timeline-section {
    position: relative;
}

.timeline-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--capuchin-blue);
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    padding: 0 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--capuchin-light);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.timeline-content {
    flex: 1;
    background-color: var(--sacred-white);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-heritage);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.timeline-icon {
    background-color: var(--capuchin-blue);
    color: var(--sacred-white);
    padding: 0.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.timeline-year {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--capuchin-gold);
}

.timeline-milestone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--capuchin-blue);
    margin: 0;
}

.timeline-description {
    color: var(--muted-foreground);
    line-height: 1.75;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--capuchin-gold);
    border-radius: 50%;
    border: 4px solid var(--sacred-white);
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
    z-index: 10;
}

.heritage-cta {
    text-align: center;
    margin-top: 5rem;
}

.heritage-cta-content {
    background: linear-gradient(180deg, var(--sacred-white), #F8FAFC);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}

.cta-icon {
    width: 3rem;
    height: 3rem;
    color: var(--capuchin-gold);
    margin: 0 auto 1rem;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--capuchin-blue);
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--capuchin-blue);
    color: var(--sacred-white);
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

.footer-school-info {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 4rem;
    width: 4rem;
}

.footer-school-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sacred-white);
    margin: 0 0 0.25rem 0;
}

.footer-location {
    color: var(--capuchin-light);
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.footer-heritage {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--capuchin-gold);
    font-weight: 600;
}

.footer-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sacred-white);
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item .icon {
    color: var(--capuchin-light);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.contact-item p {
    font-size: 0.875rem;
    line-height: 1.75;
    margin: 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--capuchin-gold);
}

.footer-social {
    margin-top: 2rem;
}

.social-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--sacred-white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--capuchin-gold);
    color: var(--capuchin-blue);
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-cta-content {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.footer-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sacred-white);
    margin-bottom: 1rem;
}

.footer-cta-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(30, 58, 138, 0.8);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.footer-copyright p {
    margin: 0;
}

.footer-made-with-love {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--capuchin-gold);
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes bounce { 0%,20%,50%,80%,100%{transform:translateY(0);}40%{transform:translateY(-10px);}60%{transform:translateY(-5px);} }
@keyframes pulse { 0%,100%{opacity:1;}50%{opacity:.5;} }

/* Responsive Design */
@media (min-width: 640px) {
    .hero-cta { flex-direction: row; }
    .cta-buttons { flex-direction: row; }
    .footer-cta-buttons { flex-direction: row; }
    .footer-bottom-content { flex-direction: row; }
}

@media (min-width: 768px) {
    .contact-bar .heritage-message { display: block; }
    .cta-section { display: block; }
    .education-grid { grid-template-columns: repeat(2, 1fr); }
    .heritage-story { grid-template-columns: repeat(2, 1fr); align-items: center; }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .desktop-nav { display: flex; }
    .mobile-menu-btn { display: none; }
    .hero-title { font-size: 4.5rem; }
    .hero-subtitle { font-size: 1.5rem; }
    .education-grid { grid-template-columns: repeat(4, 1fr); }
    .timeline::before { display: block; }
    .timeline-dot { display: block; }
    .timeline-item-reverse { flex-direction: row-reverse; }
    .timeline-item-reverse .timeline-content { text-align: right; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* Print Styles */
@media print {
    .header-fixed,
    .footer,
    .btn,
    .mobile-menu-btn { display: none !important; }
    body { font-size: 12pt; line-height: 1.5; }
    h1, h2, h3 { page-break-after: avoid; }
}

/* --- CTA: manter o título em uma linha no desktop/tablet --- */
@media (min-width: 768px) {
  .cta-heritage h3 { white-space: nowrap !important; }
}

/* ===== Fix: links na barra de contato ===== */
.contact-bar a,
.contact-bar a:visited { color: var(--sacred-white); text-decoration: none; }
.contact-bar a:hover,
.contact-bar a:focus { color: #dbeafe; text-decoration: none; }
.contact-bar .contact-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.contact-bar .contact-item .icon { color: var(--capuchin-light); }
.contact-bar .contact-item span { color: inherit; }

/* ==== CAMPANHA PRÉ-MATRÍCULA 2026 – THEME LAYER ==== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;600;700&display=swap');

:root{
  --camp-blue:#1E3A8A; --camp-blue-2:#1B5FBF; --camp-cyan:#22b0ff; --camp-yellow:#F9D300; --camp-deep:#0F2C6D;
}

h1, h2, h3, .section-title, .hero-title {
  font-family: 'Bebas Neue', var(--font-display), Georgia, serif;
  letter-spacing: .5px;
}
.contact-bar { background: var(--camp-blue); }
.contact-bar .contact-item, .contact-bar .contact-item span { color: #E6EEFF; }
.contact-bar a { color:#E6EEFF; text-decoration:none; }
.contact-bar a:hover { color: var(--camp-yellow); }

.btn-heritage, .btn-capuchin {
  border-radius: 9999px; font-weight:700; box-shadow: 0 8px 20px rgba(30,58,138,.18);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-heritage {
  background: linear-gradient(135deg, var(--camp-blue) 0%, var(--camp-cyan) 100%); color:#fff;
}
.btn-heritage:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 10px 28px rgba(34,176,255,.25); }
.btn-gold {
  border-radius: 9999px; background: linear-gradient(135deg, var(--camp-yellow) 0%, #FFE75C 100%); color:#1b2a57;
  box-shadow: 0 8px 20px rgba(249,211,0,.22);
}
.btn-gold:hover { transform: translateY(-2px); }

.badge-heritage, .since-badge, .timeline-dot { background: var(--camp-yellow) !important; color:#13306b !important; box-shadow: 0 8px 18px rgba(249,211,0,.35); }
.hero-overlay {
  background: linear-gradient(180deg, rgba(15,44,109,.70) 0%, rgba(30,58,138,.70) 50%, rgba(27,95,191,.65) 100%);
}
.cta-heritage {
  background: linear-gradient(90deg, var(--camp-blue) 0%, var(--camp-blue-2) 50%, var(--camp-cyan) 100%);
  box-shadow: 0 14px 30px rgba(30,58,138,.18); border: 0;
}
.nav-link:hover, .mobile-nav-link:hover { color: var(--camp-cyan); }
.section-title, .timeline-title, .heritage-title { color: var(--camp-blue); }
.timeline::before { background: linear-gradient(180deg, rgba(34,176,255,.55), rgba(34,176,255,.25)); }
.education-card, .value-card, .timeline-content { border: 1px solid rgba(30,58,138,.07); box-shadow: 0 8px 22px rgba(17, 24, 39, .04); }
.footer { background: var(--camp-blue); }
.footer-link:hover { color: var(--camp-yellow); }
.footer-cta-content { background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.12); }

/* Acessibilidade: foco visível */
a:focus, button:focus, .btn:focus { outline: 3px solid rgba(34,176,255,.45); outline-offset: 2px; }

/* Ícones: tamanhos consistentes */
.contact-bar .icon, .header .icon, .footer .icon, svg.icon {
  width: 20px; height: 20px; flex-shrink: 0; display: inline-block; vertical-align: middle;
}
.footer .social-icons svg { width: 28px; height: 28px; fill: currentColor; }
@media (max-width:640px){
  .contact-bar .icon, .header .icon, .footer .icon, svg.icon { width:18px; height:18px; }
  .footer .social-icons svg { width:24px; height:24px; }
}
