/* CSS Variables */
:root {
    --primary-color: #2e7d32; /* deep green */
    --secondary-color: #1f2b24; /* dark greenish */
    --white: #ffffff;
    --black: #000000;
    --gray: #6b6f6e;
    --light-gray: #f5f7f6;
    --dark-bg: #f6f8f7; /* site background now light */
    --base: #43a047; /* accent green */
    --text-color: #1f2b24; /* main text color */
    --page-bg: #f6f8f7; /* page background */
    --surface-bg: #ffffff; /* card/section surface */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--page-bg);
    overflow-x: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    position: fixed;
    top: 12px; /* pequena margem superior */
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, calc(100% - 48px)); /* margens laterais */
    background: rgba(255, 255, 255, 0.55); /* leve transparência */
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
    border-radius: 28px; /* cantos bem arredondados */
    z-index: 1000;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand .logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

/* Logo image in navbar */
.navbar-brand .logo-img {
    height: 150px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* Banner Section */
.banner__section {
    background: url('../img/hero.webp') center center/cover no-repeat;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Variáveis para animar o halo branco na hero */
    --hero-x: 20%;
    --hero-y: 80%;
    --hero2-x: 80%;
    --hero2-y: 25%;
}

.banner__section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Halos suaves em branco, animados para criar movimento sutil */
    background:
      radial-gradient(
        circle 520px at var(--hero-x) var(--hero-y),
        rgba(255,255,255,0.30),
        rgba(255,255,255,0.12) 40%,
        rgba(255,255,255,0.0) 70%
      ),
      radial-gradient(
        circle 420px at var(--hero2-x) var(--hero2-y),
        rgba(255,255,255,0.22),
        rgba(255,255,255,0.08) 40%,
        rgba(255,255,255,0.0) 70%
      ),
      linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
    animation: hero-drift 40s ease-in-out infinite alternate;
}

/* Onda branca suave passando por cima da imagem */
.banner__section::after {
    content: "";
    position: absolute;
    top: -10%;
    left: -40%;
    width: 180%;
    height: 120%;
    background: linear-gradient(120deg,
      rgba(255,255,255,0) 35%,
      rgba(255,255,255,0.75) 50%,
      rgba(255,255,255,0) 65%
    );
    filter: blur(12px);
    opacity: 0.22;
    pointer-events: none;
    transform: translateX(-60%);
    animation: white-wave 8s ease-in-out infinite;
}

@keyframes hero-drift {
  0% { --hero-x: 20%; --hero-y: 80%; --hero2-x: 80%; --hero2-y: 25%; }
  50% { --hero-x: 70%; --hero-y: 30%; --hero2-x: 30%; --hero2-y: 70%; }
  100% { --hero-x: 20%; --hero-y: 80%; --hero2-x: 80%; --hero2-y: 25%; }
}

@keyframes white-wave {
  0% { transform: translateX(-60%) rotate(0deg); }
  50% { transform: translateX(60%) rotate(0deg); }
  100% { transform: translateX(-60%) rotate(0deg); }
}

@media (max-width: 576px) {
  /* Em telas pequenas, reduzir ao máximo a onda branca para não atrapalhar a leitura */
  .banner__section::after { opacity: 0.06; filter: blur(6px); }
}

.banner__content {
    padding: 120px 0 140px;
    max-width: 640px; /* estreita o box de texto do herói */
    position: relative;
    z-index: 1;
}

.bn__currently {
    font-size: 24px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--text-color);
    display: inline-block;
    padding: 12px 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.7);
    backdrop-filter: saturate(115%) blur(6px);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.bn__currently:hover {
    color: var(--base);
    border-color: var(--base);
}

/* Sutil destaque animado no CTA */
.bn__currently::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(46,125,50,0.06), rgba(46,125,50,0.18), rgba(46,125,50,0.06));
    transform: translateX(-100%);
    animation: cta-shimmer 6s ease-in-out infinite;
    pointer-events: none;
}

.bn__currently .bi-arrow-up-right { animation: arrow-wiggle 2.8s ease-in-out infinite; }

@keyframes cta-shimmer {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}
@keyframes arrow-wiggle {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .bn__currently::after { animation: none !important; }
  .bn__currently .bi-arrow-up-right { animation: none !important; }
}

.banner__content h1 {
    font-size: 72px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 3px 12px rgba(0,0,0,0.35);
}

.hone {
    color: var(--white); /* título do herói em branco */
}

/* descrição do herói em branco para melhor legibilidade sobre a imagem */
.banner__section .lead {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.designers {
    color: var(--primary-color);
    position: relative;
}

.designers::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
    z-index: -1;
}

.video__area {
    display: flex;
    align-items: center;
    gap: 24px;
}

.video__80 {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video__80:hover {
    transform: scale(1.1);
}

.video__80 i {
    font-size: 24px;
    color: var(--white);
}

.vid__arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.proces {
    font-size: 20px;
    color: var(--text-color);
    width: 67px;
}

.banner__thumb {
    position: relative;
}

.right_up_animat {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Banner Info Sections */
.banner__leftinfo,
.banner__rightinfo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.banner__leftinfo {
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.banner__rightinfo {
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.left__infomobile a,
.right__infoscroll a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.left__infomobile a:hover,
.right__infoscroll a:hover {
    color: var(--primary-color);
}

.banner__soci {
    list-style: none;
    gap: 1rem;
}

.banner__soci li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(46, 125, 50, 0.12);
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner__soci li a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Marquee */
.marquee-wrapper {
    background: var(--primary-color);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-wrapper[data-direction="right"] .marquee-content {
    animation-direction: reverse;
}

.marquee-content span {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-right: 50px;
}

/* Marquee images */
.marquee-images img {
    height: 40px;
    margin-right: 40px;
    filter: grayscale(0%);
    opacity: 0.9;
}
.marquee-images img:hover {
    opacity: 1;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Sections */
.about-section,
.projects-section,
.services-section,
.contact-section {
    background: var(--surface-bg);
    color: var(--text-color);
}

/* Awards */
.awards-section {
    background: var(--surface-bg);
}
.awards-section h2 {
    margin-bottom: .5rem;
}
.award-item {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
}
.award-item h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: .5rem;
    hyphens: auto;
    word-break: break-word;
}
.award-item p {
    color: var(--text-color);
    margin: 0;
}

/* Ajustes de legibilidade das condições no celular */
@media (max-width: 576px) {
  .awards-section h2 { font-size: 1.75rem; }
  .award-item { padding: 1rem 0.85rem; }
  .award-item h3 { font-size: 1.25rem; line-height: 1.2; word-break: break-word; }
  .award-item p { font-size: 0.95rem; }
  /* Forçar 1 card por linha para evitar cortes de títulos longos */
  .awards-section .col-6 { flex: 0 0 100%; max-width: 100%; }
}

.about-section h2,
.projects-section h2,
.services-section h2,
.contact-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Skills */
.skills {
    margin-top: 2rem;
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-item span {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.progress {
    height: 8px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
    transition: width 1s ease;
}

/* Metting CTA */
.project__metting {
    background: var(--surface-bg);
}
.pro__metting__content .project__head .common__sub {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: .5rem;
}
.about__contbox__item {
    display: flex;
    gap: 16px;
    align-items: center;
}
.about__contbox__item .icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(46, 125, 50, 0.12);
    color: var(--primary-color);
}
.about__contbox__item .box a {
    color: var(--text-color);
    text-decoration: none;
}
.pro__metting__thumb img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Overlay e hover para imagem da seção Agende */
.pro__metting__thumb {
    position: relative;
    overflow: hidden;
}
.pro__metting__thumb img {
    transition: transform 0.3s ease;
}
.pro__metting__thumb:hover img {
    transform: scale(1.05);
}
.pro__metting__thumb:hover .project-overlay {
    opacity: 1;
}

/* Project Cards */
.project-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: contrast(1.08) saturate(1.06);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-link {
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
}

.project-content {
    padding: 1.5rem;
}

.project-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-card h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Work Process */
.process__section {
    background: url('../img/about/about-bg.png') center/cover no-repeat;
}
.process-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 1.5rem;
}
.process-card h4 {
    color: var(--primary-color);
    margin-bottom: .5rem;
}
.process-card ul {
    padding-left: 1rem;
}
.process-card ul li {
    margin-bottom: .25rem;
}

/* Contact Form */
.contact-form {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2rem;
    border-radius: 15px;
}

.form-control {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--text-color);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.form-control:focus {
    background: #ffffff;
    border-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
}

.form-control::placeholder {
    color: rgba(31, 43, 36, 0.6);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

/* Testimonial */
.testimonial__section {
    background: var(--surface-bg);
}
.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.testimonial-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: .75rem;
}
.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    filter: contrast(1.06) saturate(1.05);
}
.testimonial-card .position { color: rgba(31,43,36,0.6); font-size: .95rem; }
.testimonial-card .rating { display: flex; gap: 4px; margin-bottom: .5rem; color: #212121; }
.testimonial-card .rating i { font-size: 1rem; }
.testimonial-text {
    margin: 0;
}
.partner-logo {
    height: 28px;
    opacity: 0.7;
}
.partner-logo:hover {
    opacity: 1;
}
.swiper-pagination3 .swiper-pagination-bullet {
    background: rgba(0,0,0,0.25);
}
.swiper-pagination3 .swiper-pagination-bullet-active {
    background: #212121;
}

/* Blogs */
.blogs-section {
    background: var(--surface-bg);
}
.blog-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
}
.blog-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: contrast(1.08) saturate(1.06);
}
.blog-content {
    padding: 1rem 1.25rem 1.25rem;
}
.blog-meta {
    font-size: .875rem;
    color: rgba(31,43,36,0.7);
    margin-bottom: .5rem;
}
.blog-content h4 a {
    color: var(--text-color);
    text-decoration: none;
}
.blog-content h4 a:hover {
    color: var(--primary-color);
}

/* Navbar dropdown */
.dropdown-menu {
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.dropdown-item:hover {
    background: var(--light-gray);
}

/* Offcanvas */
.offcanvas {
    background: var(--surface-bg);
    color: var(--text-color);
}
.offcanvas .social__footer {
    color: var(--text-color);
    text-decoration: none;
}
.offcanvas .social__footer i {
    margin-left: 6px;
}

/* Footer extras */
.footer-socials a.social__footer {
    text-decoration: none;
    color: var(--primary-color);
}
.footer-socials a.social__footer:hover {
    color: #1b5e20;
}
.toparrow {
    color: var(--text-color);
}
.toparrow:hover {
    color: var(--primary-color);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 1100;
  text-decoration: none;
  font-weight: 600;
}
.floating-whatsapp i { font-size: 20px; }
.floating-whatsapp:hover { filter: brightness(1.05); }
@media (max-width: 576px) {
  .floating-whatsapp { padding: 10px 12px; }
  .floating-whatsapp .whats-text { display: none; }
}

/* Headings utility */
.common__sub {
    color: var(--primary-color);
    font-weight: 600;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 90%;
}
.lightbox-content img {
    width: 100%;
    border-radius: 12px;
}
.lightbox-close {
    position: absolute;
    top: -36px;
    right: 0;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
}

/* Footer */
.footer {
    background: #f0f4f2;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer a {
    color: var(--primary-color);
    text-decoration-color: rgba(46,125,50,0.35);
}
.footer a:hover {
    color: #1b5e20;
    text-decoration-color: #1b5e20;
}

/* Footer logo */
.footer-logo {
    height: 60px;
    width: auto;
    opacity: 0.96;
}

@media (max-width: 576px) {
  .navbar-brand .logo-img { height: 32px; }
  .footer-logo { height: 48px; }
}

/* CTA Button (WhatsApp) */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 6px 16px rgba(46,125,50,0.25);
    font-weight: 600;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}
.btn-cta i { font-size: 18px; }
.btn-cta:hover { transform: translateY(-2px); }

/* Container do CTA fixo para mobile */
.mobile-sticky-cta { display: none; }
@media (max-width: 576px) {
  .mobile-sticky-cta { 
    display: block; 
    position: fixed; 
    top: 72px; 
    left: 50%; 
    transform: translateX(-50%);
    z-index: 2000; 
  }
  /* Oculta o CTA interno da hero para evitar duplicação */
  .bn__currently { display: none; }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.video-modal iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .banner__content h1 {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    .banner__content {
        padding: 120px 16px 100px;
        text-align: center;
    }
    .header {
        top: 8px;
        width: calc(100% - 24px);
        border-radius: 20px;
    }
    
    .banner__content h1 {
        font-size: 44px;
    }
    
    .bn__currently {
        font-size: 18px;
    }
    
    .banner__leftinfo,
    .banner__rightinfo {
        position: static;
        transform: none;
        margin-top: 2rem;
    }
    
    .video__area {
        justify-content: center;
    }
    
    .about-section h2,
    .projects-section h2,
    .services-section h2,
    .blogs-section h2,
    .awards-section h2,
    .testimonial__section h2,
    .contact-section h2 {
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: 0.01em;
    }
}

@media (max-width: 576px) {
    /* Tipografia e espaçamento mais contidos para celular */
    .banner__content { padding: 140px 16px 80px; }
    .banner__content h1 { font-size: 32px; line-height: 1.2; }
    .banner__section .lead { font-size: 1rem; }
    .bn__currently { font-size: 16px; margin-bottom: 24px; }
    /* Suporte visual atrás do texto para legibilidade */
    .banner__content::before {
      content: "";
      position: absolute;
      inset: -8px -12px -8px -12px;
      background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.08) 60%, rgba(0,0,0,0.02) 100%);
      border-radius: 16px;
      z-index: -1;
    }
    /* Remover elementos laterais da hero no mobile para evitar poluição visual */
    .banner__leftinfo, .banner__rightinfo { display: none; }
    /* Desativar completamente halos em mobile se necessário */
    .banner__section::before { display: none; }
    .banner__section::after { display: none; }

    .marquee-content span {
        font-size: 18px;
        margin-right: 30px;
    }
    
    .video-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .video-modal iframe {
        height: 250px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Ambient animated background: subtle green blurred circle drifting */
body {
  background-color: #ffffff;
  --bg-x: 20%;
  --bg-y: 80%;
  --bg2-x: 10%;
  --bg2-y: 25%;
  background-image: radial-gradient(
    circle 780px at var(--bg-x) var(--bg-y),
    rgba(46,125,50,0.24),
    rgba(46,125,50,0.10) 40%,
    rgba(46,125,50,0.0) 70%
  ),
  radial-gradient(
    circle 600px at var(--bg2-x) var(--bg2-y),
    rgba(46,125,50,0.10),
    rgba(46,125,50,0.04) 40%,
    rgba(46,125,50,0.0) 70%
  );
  background-repeat: no-repeat;
  background-attachment: fixed;
  animation: ambient-drift 50s ease-in-out infinite alternate;
}

@keyframes ambient-drift {
  0% { --bg-x: 20%; --bg-y: 80%; --bg2-x: 10%; --bg2-y: 25%; }
  50% { --bg-x: 75%; --bg-y: 25%; --bg2-x: 60%; --bg2-y: 70%; }
  100% { --bg-x: 20%; --bg-y: 80%; --bg2-x: 10%; --bg2-y: 25%; }
}

@media (max-width: 576px) {
  body {
    background-image: radial-gradient(
      circle 520px at var(--bg-x) var(--bg-y),
      rgba(46,125,50,0.20),
      rgba(46,125,50,0.08) 40%,
      rgba(46,125,50,0.0) 70%
    ),
    radial-gradient(
      circle 420px at var(--bg2-x) var(--bg2-y),
      rgba(46,125,50,0.08),
      rgba(46,125,50,0.03) 40%,
      rgba(46,125,50,0.0) 70%
    );
    animation-duration: 60s;
  }
}

/* Seções principais transparentes para o halo global aparecer */
.about-section,
.projects-section,
.services-section,
.blogs-section,
.awards-section,
.testimonial__section,
.project__metting {
  background-color: transparent;
}
.blog-card,
.project-card,
.service-card,
.process-card,
.testimonial-card,
.award-item,
.contact-form {
  background-color: #ffffff;
}

/* Estados consistentes de hover/focus para botões flutuantes */
.floating-whatsapp:hover { filter: brightness(1.08); }
.floating-whatsapp:focus-visible {
  outline: 2px solid rgba(37, 211, 102, 0.6);
  outline-offset: 2px;
}
.scroll-top-btn:hover { filter: brightness(1.1); }
.scroll-top-btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Botão "Ver no mapa" seguindo paleta */
.btn-outline-success {
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline-success:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Map Section */
.map-section { background: transparent; }
.map-embed { position: relative; width: 100%; height: 500px; }
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05) brightness(0.98);
}


/* Microtipografia em mobile: leitura mais fluida */
@media (max-width: 576px) {
  .about-section p,
  .projects-section p,
  .services-section p,
  .blogs-section p {
    line-height: 1.6;
    margin-bottom: 0.9rem;
  }
  .blogs-section .blog-card { margin-bottom: 1rem; }
  /* Garantir que qualquer transformação de parallax não apareça em mobile */
  .banner__section { transform: none !important; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--page-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1b5e20;
}

/* Active nav link color */
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Ocultar Depoimentos globalmente */
#testimonial,
.testimonial__section { display: none !important; }
.navbar-nav .nav-link[href="#testimonial"] { display: none !important; }
/* Responsive tweaks for mobile spacing and typography */
@media (max-width: 576px) {
  .common__sub { font-size: 0.9rem; }
  h2, .fw-500 { font-size: 1.35rem; line-height: 1.25; }
  .projects-section .text-center.mb-5 { margin-bottom: 1.5rem !important; }
  .project-card { margin-bottom: 1rem; }
  .project-card .project-content h4 { font-size: 1rem; }
  .project-card .project-content p { font-size: 0.95rem; }
  .services-section .service-card { padding: 1rem; }
  .blogs-section h4, .blog-card h4 { font-size: 1rem; }
  .blogs-section .blog-card p { font-size: 0.95rem; }
  .about-image img { border-radius: 0.5rem; }
  .banner__content { padding: 90px 0 100px; }
  .bn__currently { font-size: 18px; }
}
/* Lightbox de Artigos */
.article-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 1050;
}
.article-modal.open { display: block; }
.article-dialog {
  position: relative;
  max-width: 900px;
  margin: 5vh auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  padding: 24px;
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.article-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.article-content h3 { margin-bottom: 8px; }
.article-content .article-meta {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.article-content img { border-radius: 8px; }
.article-content p { margin-bottom: 1rem; }

@media (max-width: 576px) {
  .article-dialog { margin: 2vh 12px; padding: 18px; max-height: 92vh; }
  .article-close { top: 6px; right: 6px; }
}

body.modal-open { overflow: hidden; }