/* ====================================
   Estilos Gerais
======================================== */
:root {
    --primary-color: #8b0000;
    --primary-dark: #660000;
    --secondary-color: #f8c537;
    --accent-color: #f8c471;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #e5ebf0;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
}

.values-section {
     padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 1.5rem;
    border-radius: 3px;
}

/*=== Enhanced NavBar ===*/
:root {
    --primary-color: #8b0000;
    --secondary-color: #660000;
    --accent-color: #f8c471;
    --text-light: #ffffff;
    --navbar-bg: rgba(103, 42, 30, 0.95);
}

.navbar {
    background-color: rgba(103, 42, 30, 0.85);
    /* Transparência inicial */
    padding: 1rem 0;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    /* Easing mais suave */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(0);
    opacity: 1;
}

.navbar.scrolled {
    background-color: rgba(103, 42, 30, 0.95);
    /* Menos transparente ao rolar */
    padding: 0.7rem 0;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    /* Impede interação quando escondido */
}

.navbar-brand {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--text-light);
    transform: translateY(-1px);
}

.navbar-nav {
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-light) !important;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    border-radius: 3px;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--accent-color) !important;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 100%;
    opacity: 1;
}

.nav-link.active {
    color: var(--accent-color) !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    opacity: 1;
}

.navbar-toggler {
    border: none;
    outline: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(248, 196, 113, 0.3);
}

.navbar-toggler-icon {
    background-image: none;
    font-size: 1.5rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dropdown-menu {
    background-color: var(--navbar-bg);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    overflow: hidden;
}

.dropdown-item {
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--secondary-color);
    color: var(--accent-color);
}

.btn-live {
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-width: 2px;
}

.btn-live:hover {
    background-color: transparent;
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--navbar-bg);
        padding: 1.5rem;
        margin-top: 0.5rem;
        border-radius: 0.5rem;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .navbar-nav {
        gap: 0.75rem;
    }

    .nav-link {
        padding: 0.75rem 0;
        margin: 0;
    }

    .dropdown-menu {
        margin-left: 1rem;
        margin-top: 0.5rem;
        width: calc(100% - 2rem);
    }

    .btn-live {
        margin-top: 1rem;
        width: 100%;
    }
}


/* ====================================
   Seção Hero
======================================== */
.about-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/about/DSC_0226.JPG') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(35, 36, 37, 0.8) 0%, rgba(103, 42, 30, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.breadcrumbs {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
}

.breadcrumbs span {
    color: var(--secondary-color);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: white;
    margin: 0.5rem auto 0;
    position: relative;
}

.scroll-line:after {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(40px);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* ====================================
   Seção de Destaque
======================================== */
.highlight-section {
    padding: 5rem 0;
    position: relative;
}

.highlight-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    margin-top: -100px;
    position: relative;
    z-index: 3;
}

.highlight-content {
    flex: 1;
    padding: 3rem;
}

.highlight-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.highlight-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-top: 0.5rem;
}

.highlight-image {
    flex: 1;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ====================================
   Seção Nossa História
======================================== */
.history-section {
    padding: 5rem 0;
    background-color: #f9fafc;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 1;
}

.timeline-content {
    width: calc(50% - 70px);
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-color);
    line-height: 1.6;
}

.timeline-content:before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content:before {
    left: -10px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.timeline-item:nth-child(even) .timeline-content:before {
    right: -10px;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/* ====================================
   Seção Missão e Valores
======================================== */
.mission-section {
    padding: 5rem 0;
    position: relative;
}

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--primary-color);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.mission-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(74, 111, 220, 0.1), rgba(248, 197, 55, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.75rem;
}

.value-item h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* ====================================
   Seção Liderança
======================================== */
.leadership-section {
    padding: 5rem 0;
    background-color: #f9fafc;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.leader-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.leader-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(103, 42, 30, 0.95);
    transition: var(--transition);
}

.leader-card:hover .leader-social {
    bottom: 0;
}

.leader-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.leader-social a:hover {
    background: var(--secondary-color);
    color: white;
}

.leader-info {
    padding: 1.5rem;
    text-align: center;
}

.leader-info h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.leader-role {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.leader-info p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ====================================
   Seção de Convite
======================================== */


.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/about/pattern.png') repeat;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ====================================
   Responsividade
======================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .highlight-card {
        flex-direction: column;
        margin-top: -50px;
    }
    
    .highlight-content {
        order: 2;
    }
    
    .highlight-image {
        order: 1;
        height: 300px;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
        transform: translateX(0);
    }
    
    .timeline-content {
        width: calc(100% - 120px);
        margin-left: 80px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content:before,
    .timeline-item:nth-child(even) .timeline-content:before {
        left: -10px;
        right: auto;
        border-right: 1px solid #eee;
        border-bottom: 1px solid #eee;
        border-left: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .highlight-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .leader-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ====================================
   Animações
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


 /* ================================================
             Estilos do Rodapé - Moderno e Profissional 
========================================================= */
.site-footer {
    background: linear-gradient(135deg, #1a1f2e 0%, #0d111a 100%);
    color: #ffffff;
    padding: 4rem 0 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #8e54e9, #ff6b6b);
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.3fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    width: 300px;
    height: 90px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-mission {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Estilos ajustados para redes sociais na horizontal */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: linear-gradient(135deg, #4a90e2, #8e54e9);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.footer-apps {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.app-download {
    display: block;
    text-decoration: none;
}

.app-icon {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
    width: 180px;
}

.app-icon:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.app-icon i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #ffffff;
}

.app-icon .app-info {
    display: flex;
    flex-direction: column;
}

.app-icon .app-info span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

.app-icon .app-info strong {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-links-column h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: #ffffff;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #8e54e9);
}

.footer-links-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column li {
    margin-bottom: 0.8rem;
}

.footer-links-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-column a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #4a90e2;
    transition: width 0.3s ease;
}

.footer-links-column a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links-column a:hover::after {
    width: 100%;
}

.footer-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-contact {
    padding: 1rem 0;
}

.footer-contact h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: #ffffff;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #8e54e9);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-item i {
    margin-right: 0.8rem;
    color: #4a90e2;
    font-size: 1rem;
    margin-top: 0.2rem;
}

.footer-map {
    position: relative;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    height: 250px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-legal {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-legal p {
    margin: 0.3rem 0;
}

.footer-newsletter {
    max-width: 300px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
}

.newsletter-form label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.input-group {
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.input-group input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: none;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.9);
}

.input-group button {
    background: linear-gradient(135deg, #4a90e2, #8e54e9);
    color: white;
    border: none;
    padding: 0 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: linear-gradient(135deg, #3a7bc8, #7d44d9);
}

/* Responsividade */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-right-column {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .map-container {
        height: 200px;
    }
}

@media (max-width: 992px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-right-column {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-newsletter {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .social-icons {
        flex-wrap: wrap;
    }

    .footer-apps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .app-icon {
        width: 100%;
        max-width: 160px;
    }
}

/* =================================
    Botão Voltar ao Topo 
=====================================*/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--box-shadow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}


/* ==========================================================================
   Botões
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 7px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-color: var(--light-color);
}

.btn-primary:hover {
    background-color: #1a252f;
    border-color: #1a252f;
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-light {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.btn-light:hover {
    background-color: #d5dbdb;
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--light-color);
    border-color: var(--light-color);
}

.btn-outline-light:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}


