@import url('https://fonts.googleapis.com/css?family=Poppins:400,600,700,800,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --cor-destaque: #1E90FF;
    --cor-fundo: #121212;
    --cor-texto: #E0E0E0;
    --cor-contraste: #37474F;
    --cor-frescor: #00ACC1;
    --cor-secundaria-escura: #0D47A1;
    --sombra-card-padrao: 0 4px 8px rgba(0, 0, 0, 0.3);
    --sombra-card-hover: 0 8px 16px rgba(0, 0, 0, 0.5);
    --cor-titulo: #FFFFFF;
    --cor-texto-secundario: #B0BEC5;
    --cor-fundo-claro: #1E1E1E;
    --cor-navbar-bg: #1C1C1C;
    --cor-navbar-text: #E0E0E0;
    --cor-navbar-active: #1E90FF;
    --cor-footer-bg: #0B0B0B;
    --cor-footer-text: #E0E0E0;
    --cor-footer-link: #1E90FF;
    --cor-hover-underline: #00ACC1;
    --sidebar-bg-color: #1C1C1C;
    --sidebar-text-color-light: #E0E0E0;
    --sidebar-hover-bg-color: #2C2C2C;
    --sidebar-active-color: #1E90FF;
    --sidebar-active-text-color: #FFFFFF;
    --sidebar-border-color: rgba(255, 255, 255, 0.1);
    --sidebar-width-desktop: 250px;
    --sidebar-width-mobile: 280px;
    --dashboard-card-bg: #1E1E1E;
    --dashboard-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    --dashboard-text-color-dark: #E0E0E0;
    --topbar-height: 3.8rem;
    --danger-color: #dc3545;
    --dashboard-accent-color: #1E90FF;
    --cor-filtro-fundo: #1E1E1E; 
    --cor-filtro-borda: #37474F; 
    --cor-filtro-texto: #E0E0E0; 
    --cor-filtro-focus: #1E90FF; 
    --cor-botao-filtro-fundo: #1E90FF;
    --cor-botao-filtro-texto: #fff;
    --cor-botao-filtro-hover-fundo: #1873CC;
    /* Fallback fonts */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}


body {
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    font-family: var(--font-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

    body.sidebar-open {
        overflow: hidden;
    }

    body.loading-cursor {
        cursor: wait;
    }

h1, h2, h3, h4, h5, h6 {
    color: var(--cor-titulo);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--cor-texto-secundario);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(1);
}

.btn-primary {
    background-color: var(--cor-destaque);
    border-color: var(--cor-destaque);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

    .btn-primary:hover, .btn-primary:focus {
        background-color: #bf4e08;
        border-color: #bf4e08;
        transform: translateY(-2px);
    }

.btn-light {
    color: var(--cor-destaque);
    background-color: white;
    border-color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

    .btn-light:hover, .btn-light:focus {
        color: #bf4e08;
        background-color: var(--cor-fundo);
        border-color: var(--cor-fundo);
    }

.btn-outline-light {
    border-color: white;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

    .btn-outline-light:hover, .btn-outline-light:focus {
        background-color: white;
        color: var(--cor-destaque);
        border-color: white;
    }

.section-about-us, .section-services, .testimonial-section, .section-contact-cards {
    padding: 5rem 0;
}

.section-about-us {
    color: var(--cor-texto);
    padding: 60px 0;
    background-color: var(--cor-fundo-claro);
    border-radius: 12px;
}

.welcome-section {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.9) 0%, rgba(30, 144, 255, 0.85) 50%, rgba(0, 172, 193, 0.9) 100%);
    color: white;
    text-align: center;
    padding: 6rem 0; 
    position: relative;
    overflow: hidden;
    height: 80vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .welcome-section h1 {
        font-size: 3rem; 
        font-weight: 800;
        margin-bottom: 1.2rem; 
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        animation: fade-in-up 1s ease-out;
    }

    .welcome-section p.lead {
        font-size: 1.3rem; 
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.9);
        animation: fade-in-up 1.2s ease-out;
    }

    .welcome-section .btn {
        margin: 0 0.75rem;
        animation: fade-in-up 1.4s ease-out;
    }

    .welcome-section .btn-light {
        color: white;
        background-color: transparent;
        border: 2px solid white;
        transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    }

        .welcome-section .btn-light:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--cor-destaque);
        }

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-about-us h2 {
    color: var(--cor-titulo);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-about-us p.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--cor-texto-secundario);
    margin-bottom: 2rem;
}

.section-about-us .img-about-us {
    max-width: 400px;
    height: auto;
    border: 5px solid var(--cor-destaque);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .section-about-us .img-about-us:hover {
        transform: rotate(0deg) scale(1.02);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    }

.section-about-us .btn-primary {
    background-color: var(--cor-frescor);
    border-color: var(--cor-frescor);
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

    .section-about-us .btn-primary:hover {
        background-color: #428d7a;
        border-color: #428d7a;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.section-services {
    background-color: var(--cor-fundo);
}

.testimonial-section {
    background-color: var(--cor-fundo-claro);
}

.card {
    border: 1px solid var(--cor-contraste);
    background-color: var(--cor-fundo-claro);
    border-radius: 12px;
    box-shadow: var(--sombra-card-padrao);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    margin-bottom: 1rem;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: var(--sombra-card-hover);
        border-color: var(--cor-destaque);
    }

    .card .card-body {
        padding: 2rem;
    }

    .card .card-title {
        color: var(--cor-destaque);
        font-weight: 600;
    }

    .card .card-text {
        color: var(--cor-texto-secundario);
        font-size: 1.05rem;
    }

/* Service Cards - Dark Theme */
.service-card {
    background-color: var(--cor-fundo-claro);
    border: 1px solid var(--cor-contraste);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .service-card:hover {
        border-color: var(--cor-destaque);
        background-color: #252525;
    }

    .service-card .card-title {
        color: var(--cor-destaque);
    }

    .service-card .card-text {
        color: var(--cor-texto-secundario);
    }

/* Testimonial Cards - Dark with dashed border */
.testemunho-card {
    background-color: var(--cor-fundo-claro);
    border: 2px dashed var(--cor-contraste);
    border-radius: 12px;
}

    .testemunho-card:hover {
        border-color: var(--cor-destaque);
    }

    .testemunho-card .card-text {
        color: var(--cor-texto-secundario);
    }

    .testemunho-card footer {
        color: var(--cor-frescor);
    }

.app-header {
    box-shadow: var(--sombra-card-padrao);
}

.app-navbar {
    background-color: var(--cor-navbar-bg) !important;
    padding: 1rem 0;
}

.navbar-brand {
    color: var(--cor-destaque) !important;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.navbar-logo {
    height: 40px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-brand-text {
    color: var(--cor-secundaria-escura);
    transition: color 0.3s ease;
}

.navbar-brand:hover .navbar-brand-text {
    color: var(--cor-destaque);
}

.app-navbar .nav-link {
    color: var(--cor-navbar-text);
    font-weight: 600;
    margin: 0 0.75rem;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .app-navbar .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background-color: var(--cor-hover-underline);
        transition: width 0.3s ease-out;
        border-radius: 2px;
    }

    .app-navbar .nav-link:hover {
        color: var(--cor-destaque);
        transform: translateY(-2px);
        background-color: transparent;
    }

        .app-navbar .nav-link:hover::after {
            width: 100%;
        }

    .app-navbar .nav-link.active {
        color: var(--cor-navbar-active);
        background-color: rgba(var(--cor-navbar-active), 0.1);
        border-bottom: 2px solid var(--cor-navbar-active);
        transform: translateY(0);
    }

        .app-navbar .nav-link.active::after {
            width: 0;
        }

.btn-primary-nav {
    background-color: var(--cor-frescor);
    border-color: var(--cor-frescor);
    color: white !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    margin-left: 1rem;
}

    .btn-primary-nav:hover {
        background-color: #428d7a;
        border-color: #428d7a;
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

.app-footer {
    background-color: var(--cor-footer-bg);
    color: var(--cor-footer-text);
    padding: 3rem 0;
    font-size: 0.95rem;
    margin-top: 5rem;
    border-top: 5px solid var(--cor-frescor);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

    .app-footer .footer-logo {
        max-width: 160px;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .app-footer .footer-title {
        color: #1e90ff;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }

        .app-footer .footer-title::after {
            content: '';
            display: block;
            width: 50%;
            height: 3px;
            background-color: var(--cor-frescor);
            margin-top: 0.5rem;
            border-radius: 2px;
            left: 0;
            transform: translateX(0);
        }

    .app-footer p, .app-footer ul li {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.8;
    }

    .app-footer .footer-link {
        color: var(--cor-footer-link);
        text-decoration: none;
        transition: color 0.3s ease, transform 0.2s ease;
        display: inline-block;
    }

        .app-footer .footer-link:hover {
            color: white;
            transform: translateX(5px);
        }

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 3rem 0;
}

.app-footer .footer-social-icons .social-icon {
    color: var(--cor-footer-link);
    font-size: 2.2rem;
    margin: 0 0.7rem;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    line-height: 1;
    text-decoration: none;
}

    .app-footer .footer-social-icons .social-icon:hover {
        color: var(--cor-destaque);
        transform: scale(1.15);
    }

    .app-footer .footer-social-icons .social-icon i {
        display: block;
        line-height: 1;
        padding: 0;
        margin: 0;
        background: none;
        border: none;
    }



.app-footer .footer-copyright {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.app-footer .footer-developer-credit {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
    display: block;
}

    .app-footer .footer-developer-credit .developer-link {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .app-footer .footer-developer-credit .developer-link:hover {
            color: var(--cor-frescor);
            text-decoration: underline;
        }

    .app-footer .footer-developer-credit .developer-icon {
        color: rgba(255, 255, 255, 0.4);
        font-size: 1rem;
        transition: color 0.3s ease;
    }

        .app-footer .footer-developer-credit .developer-icon:hover {
            color: var(--cor-frescor);
        }

.footer-legal-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

    .footer-legal-social > div {
        flex: 1 1 250px;
        text-align: center;
    }

.footer-legal-links a {
    color: var(--cor-footer-link);
    margin: 0 0.5rem;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-legal-links a:hover {
        color: var(--cor-destaque);
    }

.footer-copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-developer-credit {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

    .footer-developer-credit a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
    }

        .footer-developer-credit a:hover {
            color: var(--cor-frescor);
            text-decoration: underline;
        }



@media (max-width: 991.98px) {
    .app-footer .col-lg-4, .app-footer .col-lg-2, .app-footer .col-lg-3, .app-md-6 {
        text-align: center !important;
        margin-bottom: 2.5rem;
    }

    .app-footer .footer-logo {
        margin-bottom: 1.5rem;
    }

    .app-footer .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .app-footer .footer-legal-social {
        flex-direction: column;
        text-align: center;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .app-footer .footer-legal-links {
        margin-bottom: 1rem;
    }

    .app-footer .social-icon {
        margin: 0 0.6rem;
    }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.loader {
    position: relative;
    width: 164px;
    height: 164px;
    border-radius: 50%;
    animation: rotate 0.75s linear infinite;
}

    .loader::before {
        content: '';
        position: absolute;
        width: 20px;
        height: 40px;
        border: 1px solid #FF3D00;
        border-width: 12px 2px 7px;
        border-radius: 2px 2px 1px 1px;
        box-sizing: border-box;
        transform: rotate(45deg) translate(24px, -10px);
        background-image: linear-gradient(#FF3D00 20px, transparent 0), linear-gradient(#FF3D00 30px, transparent 0), linear-gradient(#FF3D00 30px, transparent 0);
        background-size: 10px 12px, 1px 30px, 1px 30px;
        background-repeat: no-repeat;
        background-position: center, 12px 0px, 3px 0px;
    }

    .loader::after {
        content: '';
        position: absolute;
        height: 4px;
        width: 4px;
        left: 20px;
        top: 47px;
        border-radius: 50%;
        color: #FFF;
        box-shadow: -4px 7px 2px, -7px 16px 3px 1px, -11px 24px 4px 1px, -6px 24px 4px 1px, -14px 35px 6px 2px, -5px 36px 8px 2px, -5px 45px 8px 2px, -14px 49px 8px 2px, 6px 60px 11px 1px, -11px 66px 11px 1px, 11px 75px 13px, -1px 82px 15px;
    }

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.app-footer {
    background-color: #222;
    color: #fff;
    padding: 3rem 0 1rem;
    font-size: 0.95rem;
    --cor-destaque: #D85F0A;
    --cor-footer-link: #a8dadc;
    --cor-frescor: #00cfc1;
}

    .app-footer h5 {
        color: var(--cor-destaque);
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .app-footer ul {
        list-style: none;
        padding-left: 0;
    }

    .app-footer li {
        margin-bottom: 0.5rem;
    }

    .app-footer i {
        margin-right: 0.5rem;
    }

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

    .footer-social-icons .social-icon {
        color: var(--cor-footer-link);
        font-size: 2.3rem;
        transition: color 0.3s ease, transform 0.2s ease;
        text-decoration: none;
        padding: 0;
        background: none;
        border: none;
        border-radius: 0;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .footer-social-icons .social-icon:hover {
            color: var(--cor-destaque);
            transform: scale(1.15);
        }

.footer-legal-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

    .footer-legal-social > div {
        flex: 1 1 250px;
        text-align: center;
    }

.footer-legal-links a {
    color: var(--cor-footer-link);
    margin: 0 0.5rem;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-legal-links a:hover {
        color: var(--cor-destaque);
    }

.footer-copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-developer-credit {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

    .footer-developer-credit a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
    }

        .footer-developer-credit a:hover {
            color: var(--cor-frescor);
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .footer-legal-social {
        flex-direction: column;
        text-align: center;
    }

        .footer-legal-social > div {
            flex: 1 1 100%;
            margin-bottom: 1rem;
        }

    .footer-social-icons {
        justify-content: center;
    }
}

/* ====== Logo GearUp Styles (Consolidado) ====== */
/* Logo GearUp Styles */
.gearup-logo {
    transition: transform 0.3s ease, filter 0.3s ease;
    display: inline-block;
}

.gearup-logo:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 0 10px rgba(30, 144, 255, 0.5));
}

.navbar-logo-gearup,
.footer-logo-gearup {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo-gearup:hover {
    transform: scale(1.1);
}

.footer-logo-gearup {
    max-width: 120px;
    height: auto;
}

@media (max-width: 767.98px) {
    .navbar-logo-gearup {
        height: 40px;
    }
    
    .footer-logo-gearup {
        max-width: 100px;
    }
}

/* Feature Cards - About Us Page */
.feature-card {
    background-color: var(--cor-fundo-claro);
    border: 1px solid var(--cor-contraste);
    transition: all 0.3s ease;
}

    .feature-card:hover {
        background-color: #252525;
        border-color: var(--cor-destaque);
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 3rem;
    color: var(--cor-destaque);
}

.feature-title {
    color: var(--cor-titulo);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--cor-texto-secundario);
    line-height: 1.6;
}

/* About Us Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.95) 0%, rgba(30, 144, 255, 0.9) 50%, rgba(0, 172, 193, 0.95) 100%);
    padding: 4rem 1rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.about-content .image-container {
    overflow: hidden;
    border-radius: 12px;
    border: 3px solid var(--cor-destaque);
}

    .about-content .image-container img {
        transition: transform 0.3s ease;
    }

    .about-content .image-container:hover img {
        transform: scale(1.05);
    }

.section-subtitle {
    color: var(--cor-destaque);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

    .section-subtitle::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background-color: var(--cor-frescor);
        border-radius: 5px;
    }

.text-secondary-dark {
    color: var(--cor-texto-secundario);
    line-height: 1.8;
}

.values-heading {
    color: var(--cor-titulo);
    font-size: 1.5rem;
    font-weight: 600;
}

.values-list {
    list-style: none;
    padding: 0;
}

    .values-list li {
        color: var(--cor-texto-secundario);
        margin-bottom: 0.75rem;
        font-size: 1.05rem;
    }

.icon-mission,
.icon-values {
    color: var(--cor-frescor);
}

/* CTA Button About Page */
.wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background-color: var(--cor-destaque);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

    .cta-contact:hover {
        background-color: var(--cor-frescor);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 172, 193, 0.4);
        color: white;
    }

    .cta-contact .icon-phone {
        transition: transform 0.3s ease;
    }

    .cta-contact:hover .icon-phone {
        transform: rotate(15deg);
    }

/* Global input styling for dark theme */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="url"],
input[type="search"],
select,
textarea {
    background-color: #2A2A2A;
    color: var(--cor-texto);
    border: 1px solid var(--cor-contraste);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    input[type="password"]:focus,
    input[type="number"]:focus,
    input[type="date"]:focus,
    input[type="time"]:focus,
    input[type="datetime-local"]:focus,
    input[type="url"]:focus,
    input[type="search"]:focus,
    select:focus,
    textarea:focus {
        background-color: #2A2A2A;
        color: var(--cor-texto);
        border-color: var(--cor-frescor);
        box-shadow: 0 0 0 0.25rem rgba(0, 172, 193, 0.25);
        outline: none;
    }

    input[type="text"]::placeholder,
    input[type="email"]::placeholder,
    input[type="tel"]::placeholder,
    input[type="password"]::placeholder,
    input[type="number"]::placeholder,
    input[type="url"]::placeholder,
    input[type="search"]::placeholder,
    textarea::placeholder {
        color: rgba(224, 224, 224, 0.5);
    }

/* Form labels */
label {
    color: var(--cor-titulo);
    font-weight: 600;
}

/* Bootstrap form-control override for dark theme */
.form-control,
.form-select {
    background-color: #2A2A2A;
    color: var(--cor-texto);
    border: 1px solid var(--cor-contraste);
}

    .form-control:focus,
    .form-select:focus {
        background-color: #2A2A2A;
        color: var(--cor-texto);
        border-color: var(--cor-frescor);
        box-shadow: 0 0 0 0.25rem rgba(0, 172, 193, 0.25);
    }

    .form-control::placeholder {
        color: rgba(224, 224, 224, 0.5);
    }

/* Disabled inputs */
input:disabled,
select:disabled,
textarea:disabled,
.form-control:disabled,
.form-select:disabled {
    background-color: #1A1A1A;
    color: rgba(224, 224, 224, 0.4);
    cursor: not-allowed;
}

