: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;
}

h1, h2 {
    color: #f8c471;
}

/* Estilos para a página de contato */
.contact-header {
    position: relative;
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/backgrounds/slider3.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.contact-header .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.7) 0%, rgba(75, 0, 0, 0.7) 100%);
}

.contact-header .header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-header .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-breadcrumbs {
    font-size: 1rem;
    color: var(--accent-color);
}

.contact-breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-breadcrumbs a:hover {
    color: #f8c471;
    text-decoration: underline;
}



.contact-main {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/*  ===============================
    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%;
    }
}


/* ===========================
    Card de Informações 
=========================================================*/
.contact-info-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
}

.contact-info-header {
    background: #8b0000;
    color: #fff;
    padding: 1.5rem;
}

.contact-info-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-info-header h2 i {
    margin-right: 10px;
}

.contact-info-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.contact-info-body {
    padding: 1.5rem;
}

.contact-method {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.contact-method:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #8b0000;
    font-size: 1.25rem;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-details a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-details a:hover {
    color: #8b0000;
}

.map-link {
    display: inline-flex;
    align-items: center;
    color: #8b0000 !important;
    font-weight: 500;
    margin-top: 0.5rem;
}

.map-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.map-link:hover i {
    transform: translateX(3px);
}

.contact-hours,
.response-time {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-link.youtube {
    background: #ec3737;
}

.social-link.facebook {
    background: #559af3;
}

.social-link.whatsapp {
    background: #38f37d;
}

/* Formulário de Contato */
.contact-form-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    height: 100%;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.form-header h2 i {
    margin-right: 10px;
    color: #8b0000;
}

.form-header p {
    color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #444;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 1rem;
}

.form-control:focus {
    border-color: #8b0000;
    box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.15);
    outline: none;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
    border-color: #198754;
}

.form-control.is-valid:focus {
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

.is-invalid ~ .invalid-feedback {
    display: block;
}

.valid-feedback {
    color: #198754;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

.is-valid ~ .valid-feedback {
    display: block;
}

.captcha-group {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.captcha-group label {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.captcha-group label span {
    font-weight: bold;
    margin-left: 5px;
    color: #8b0000;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-submit {
    background: #8b0000;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.btn-submit:hover {
    background: #6b0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit .spinner {
    display: none;
}

.btn-submit .btn-text {
    display: flex;
    align-items: center;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0;
}

/* Seção FAQ */
.faq-section {
    margin: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header h2 i {
    margin-right: 10px;
    color: #8b0000;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: none;
    text-align: left;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
    color: #8b0000;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.faq-answer p {
    margin-bottom: 0;
    color: #555;
}

.faq-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.faq-footer a {
    color: #8b0000;
    font-weight: 500;
    text-decoration: none;
}

.faq-footer a:hover {
    text-decoration: underline;
}

/* Seção Mapa */
.map-section {
    margin-top: 5rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-map-action {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-map-action:hover {
    background: #8b0000;
    color: #fff;
    border-color: #8b0000;
}

.btn-map-action i {
    margin-right: 5px;
}

/* Mensagens de Feedback */
.message-container {
    margin-bottom: 2rem;
}

.alert {
    border-radius: 5px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border: none;
    display: flex;
    align-items: center;
}

.alert i {
    margin-right: 10px;
    font-size: 1.25rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

.alert .btn-close {
    margin-left: auto;
    padding: 0.5rem;
}



/* ================================================
             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;
}
