:root {
    --color-primary: #0e6ba8;
    --color-primary-dark: #0a4f7d;
    --color-secondary: #25d366;
    --color-dark-section: #1a1a1a;
    --color-text-body: #666666;
    --color-text-heading: #0e6ba8;
    --color-text-white: #ffffff;
    --color-background: #ffffff;
    --color-border: #e5e5e5;
    --color-input-bg: #f9f9f9;
}

body {
    background-color: var(--color-input-bg);
    font-family: Arial, Helvetica, sans-serif;
    color: var(--color-text-body);
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--color-text-heading);
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.8rem;
}

h2 {
    font-size: 1.6rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.2rem;
}

h5 {
    font-size: 1.1rem;
}

.top-bar {
    background-color: var(--color-primary);
    color: white;
    padding: 8px 0;
    font-size: 1rem;
    text-align: center;
}

.top-bar a {
    color: white;
    margin: 0 8px;
    text-decoration: none;
}

.navbar {
    padding: 10px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    max-height: 40px;
}

.navbar-collapse {
    margin-top: 15px;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
}

.btn-orcamento {
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
    padding: 15px;
    border-radius: 5px;
    text-transform: uppercase;
    border: none;
    width: 100%;
    display: block;
    text-decoration: none;
    text-align: center;
}

.btn-orcamento:hover {
    background-color: var(--color-primary-dark);
    color: white;
}

.hero-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-image: url('../imgs/hero-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-text-white);
    text-align: center;
    padding: 60px 0;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-banner h1 {
    color: var(--color-text-white);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-banner .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 15px 0;
}

.d-flex-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-whatsapp {
    background-color: var(--color-secondary);
    color: white;
    font-weight: 600;
    padding: 15px;
    border-radius: 5px;
    text-transform: uppercase;
    border: none;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
}

.btn-whatsapp:hover {
    background-color: #1ebc57;
    color: white;
}

.sobre-nos {
    background-color: var(--color-background);
}

.section-title {
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin-top: 5px;
}

.about-text {
    line-height: 1.7;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--color-text-heading);
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit-item i {
    color: var(--color-primary);
    margin-right: 8px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s;
}

.feature-title {
    color: var(--color-text-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
}

footer {
    background-color: var(--color-primary-dark);
    color: white;
    padding-top: 60px;
    font-size: 0.95rem;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

footer h5 {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

footer p {
    color: white;
    line-height: 1.6;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

footer .social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}


footer .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin: 0 5px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer .social-icons a:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: white;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-banner h1 {
        font-size: 2.5rem;
    }

    .hero-banner .btn {
        display: inline-block;
        width: auto;
        margin-bottom: 0;
        padding: 10px 25px;
    }

    .d-flex-btns {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .btn-whatsapp,
    .btn-orcamento {
        width: auto;
    }

    footer {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .top-bar {
        text-align: right;
        font-size: 1.2rem;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar-collapse {
        margin-top: 0;
        text-align: left;
        border-top: none;
    }

    .nav-link {
        padding: 8px 15px;
        border-bottom: none;
    }

    .navbar .btn-orcamento {
        margin-top: 0;
        margin-left: 20px;
        width: auto;
    }

    .navbar-brand img {
        max-height: 50px;
    }
}

.text-primary {
    color: var(--color-primary) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.cta-strip {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    padding: 40px 0;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.cta-strip h3 {
    color: var(--color-text-white);
}

.cta-strip .btn-orcamento {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.cta-strip .btn-orcamento:hover {
    background-color: white;
    color: var(--color-primary);
}

.contact-section {
    padding: 60px 0;
    background-color: white;
}

.contact-section .form-control {
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
}

.contact-section .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.25rem rgba(14, 107, 168, 0.25);
}

.contact-section h2 {
    color: var(--color-primary);
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}

.contact-section ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--color-text-body);
}

.contact-section ul li i {
    color: var(--color-primary);
    width: 25px;
}

.services-section h2 {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.service-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-item img {
    object-fit: cover;
    width: 100%;
}

.service-caption {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 767px) {
    .benefit-item {
        justify-content: center;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .benefit-item i {
        margin-right: 5px;
    }
}
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    display: none;
}

/* reCAPTCHA Badge */
.grecaptcha-badge {
    visibility: visible;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.grecaptcha-badge:hover {
    opacity: 1;
}
