/* ========================================
   DESIGN: Precision & Sky - Versão Verde
   Paleta: Verde Natural (Bege → Verde → Verde Escuro)
   ======================================== */

:root {
    /* Cores - Paleta Verde Harmonizada com Logo */
    --primary: #2D7A4A;           /* Verde Escuro (base da logo) */
    --primary-dark: #1F5A35;      /* Verde Escuro Profundo */
    --primary-light: #4A9B65;     /* Verde Médio */
    --accent: #7CB342;            /* Verde Claro/Médio */
    --accent-light: #9CCC65;      /* Verde Claro */
    --accent-very-light: #C5E1A5; /* Verde Muito Claro */
    --gold: #C4A87D;              /* Bege/Dourado (topo da logo) */
    --dark: #1A1A1A;              /* Charcoal */
    --navy: #001F3F;              /* Azul Marinho (texto e pin) */
    --light: #F5F5F5;             /* Light Gray */
    --white: #FFFFFF;             /* White */
    --gray: #757575;              /* Medium Gray */
    --gray-light: #E8E8E8;        /* Light Gray */
    --gray-lighter: #F0F0F0;      /* Very Light Gray */
    --muted: #92929D;             /* Muted Gray */
    
    /* Tipografia */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Espacamento */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(45, 122, 74, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(45, 122, 74, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(45, 122, 74, 0.15);
    --shadow-xl: 0 20px 25px -5px rgba(45, 122, 74, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
}

/* ========================================
   TIPOGRAFIA
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
}

p {
    font-size: 1rem;
    color: var(--gray);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ========================================
   CONTAINER
   ======================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ========================================
   HEADER/NAVEGACAO
   ======================================== */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .navbar {
        height: 3.5rem;
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    color: var(--navy);
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s ease;
}

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

.cta-button {
    display: none;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .cta-button {
        display: block;
    }
}

.cta-button:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HEADER SOCIAL ICONS
   ======================================== */

.header-social {
    display: none;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .header-social {
        display: flex;
    }
}

.header-social a {
    color: var(--primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(45, 122, 74, 0.1);
}

.header-social a:hover {
    background: rgba(45, 122, 74, 0.2);
    transform: translateY(-2px);
    color: var(--primary-dark);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */

.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 0 rgba(45, 122, 74, 0.7);
    animation: none;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 122, 74, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(45, 122, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(45, 122, 74, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown .nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(45, 122, 74, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-item:hover {
    background: rgba(45, 122, 74, 0.1);
    border-left-color: #2D7A4A;
    padding-left: 1.5rem;
}

/* Mobile Menu */
.nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    border-bottom: 1px solid var(--gray-light);
    gap: 0.5rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

   .hero {
    margin-top:4rem;
    height:100vh;
    position:relative;
    overflow:hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 8%;
    left: 6%;
    max-width: 520px;
    z-index: 2;
    color: #fff;
    text-align: left;
    animation: fadeInUp .8s ease;
    padding: 1rem;
}

@media (max-width: 768px) {
    .hero-content {
        bottom: 5%;
        left: 3%;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        bottom: 3%;
        left: 2%;
        max-width: 95%;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-dot {
    width: 24px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.scroll-dot::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

/* ========================================
   BOTOES
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-lighter);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   SECOES
   ======================================== */

section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 6rem 0;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--gray);
    font-size: 1.2rem;
}

@media (max-width: 640px) {
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* ========================================
   SERVICOS SECTION
   ======================================== */

.servicos {
    background: linear-gradient(to bottom, #F5F9F7, var(--white));
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

@media (max-width: 640px) {
    .service-card {
        padding: 1.5rem;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.service-card:hover::before {
    width: 100%;
}

.service-badge {
    position: relative;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.service-icon {
    font-size: 1.5rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(45, 122, 74, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    align-self: flex-start;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   BENEFICIOS SECTION
   ======================================== */

   .beneficios {
    background: var(--white);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.05), rgba(45, 122, 74, 0.05));
    border: 1px solid rgba(45, 122, 74, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    min-height: 100%;
}

.benefit-card:hover {
    background: rgba(45, 122, 74, 0.08);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.benefit-card h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */

.portfolio {
    background: linear-gradient(to bottom, #F5F9F7, var(--white));
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(45, 122, 74, 0.1);
}

@media (max-width: 640px) {
    .portfolio-item {
        height: 250px;
    }
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 122, 74, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.25rem;
}

/* ========================================
   CERTIFICACOES SECTION
   ======================================== */

.certificacoes {
    background: var(--white);
}

.certificacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.05), rgba(45, 122, 74, 0.05));
    border: 1px solid rgba(45, 122, 74, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateY(-4px);
    background: rgba(45, 122, 74, 0.08);
}

.cert-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cert-card h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.cert-full {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.cert-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section > .container > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info-item {
    text-align: center;
}

.info-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.info-item a {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.info-item a:hover {
    color: var(--gray-lighter);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent);
}

/* ========================================
   ANIMACOES
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scrollDot {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-social {
        display: none;
    }
}

/* ========================================
   SERVICE DETAIL PAGES
   ======================================== */

.service-details {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(196, 168, 125, 0.05) 0%, rgba(124, 179, 66, 0.05) 100%);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.detail-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(45, 122, 74, 0.1);
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 122, 74, 0.2);
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7CB342, #2D7A4A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin: 0 auto 1rem;
}

.detail-item h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.detail-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-applications {
    padding: 4rem 0;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.app-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(45, 122, 74, 0.1);
    transition: all 0.3s ease;
}

.app-card:hover {
    border-color: #2D7A4A;
    box-shadow: 0 8px 20px rgba(45, 122, 74, 0.15);
}

.app-icon {
    width: 50px;
    height: 50px;
    background: rgba(45, 122, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2D7A4A;
    margin: 0 auto 1rem;
}

.app-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.app-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ========================================
   QUEM SOMOS PAGE
   ======================================== */

.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(196, 168, 125, 0.05) 0%, rgba(124, 179, 66, 0.05) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(45, 122, 74, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 122, 74, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7CB342, #2D7A4A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.mvv-section {
    padding: 4rem 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 640px) {
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.mvv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(45, 122, 74, 0.1);
    transition: all 0.3s ease;
}

@media (max-width: 640px) {
    .mvv-card {
        padding: 1.75rem;
    }
}

.mvv-card:hover {
    border-color: #2D7A4A;
    box-shadow: 0 8px 25px rgba(45, 122, 74, 0.15);
    transform: translateY(-5px);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7CB342, #2D7A4A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.mvv-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.mvv-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.team-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(196, 168, 125, 0.05) 0%, rgba(124, 179, 66, 0.05) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(45, 122, 74, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 122, 74, 0.2);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7CB342, #2D7A4A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    margin: 0 auto 1rem;
}

.team-member h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.member-role {
    color: #7CB342;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.diferenciais-section {
    padding: 4rem 0;
	background: linear-gradient(135deg, rgba(196, 168, 125, 0.05) 0%, rgba(124, 179, 66, 0.05) 100%);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
}

.diferencial-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(45, 122, 74, 0.1);
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    border-color: #2D7A4A;
    box-shadow: 0 8px 20px rgba(45, 122, 74, 0.15);
    transform: translateY(-3px);
}

.diferencial-icon {
    width: 60px;
    height: 60px;
    background: rgba(45, 122, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #2D7A4A;
    margin: 0 auto 1rem;
}

.diferencial-item h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.diferencial-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}

/* ========================================
   GALLERY FILTERS AND MODAL
   ======================================== */

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(45, 122, 74, 0.2);
    background: var(--white);
    color: var(--primary);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--primary);
    background: rgba(45, 122, 74, 0.05);
}

.filter-btn.active {
    background: linear-gradient(135deg, #7CB342, #2D7A4A);
    color: var(--white);
    border-color: #2D7A4A;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1.25;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 122, 74, 0.9), rgba(124, 179, 66, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.25rem;
    text-align: center;
    font-weight: 700;
}

.gallery-item.hidden {
    display: none;
}

/* Modal */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    transform: rotate(90deg);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 640px) {
    .gallery-filters {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .modal-close {
        top: -35px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .servicos-grid,
    .beneficios-grid,
    .portfolio-grid,
    .certificacoes-grid {
        grid-template-columns: 1fr;
    }

    .header-social {
        display: none;
    }

    .navbar {
        gap: 0.5rem;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}
/* YouTube Video Container */
.youtube-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(45, 122, 74, 0.15);
    background: #f0f0f0;
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/*====================================================
                INSPECTION GALLERY
====================================================*/

.inspection-gallery{
    padding:80px 0;
    background:linear-gradient(135deg, rgba(196, 168, 125, 0.05) 0%, rgba(124, 179, 66, 0.05) 100%);;
}

.inspection-gallery .container{
    max-width:1320px;
    margin:0 auto;
    padding:0 20px;
}

.inspection-gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,400px);

    justify-content:center;

    gap:30px;

    margin-top:45px;

}

.inspection-gallery-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    border:1px solid #ececec;

    box-shadow:0 10px 30px rgba(0, 0, 0, 0.08);

    transition:.35s ease;

    display:flex;

    flex-direction:column;

    height:100%;

}

.inspection-gallery-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.inspection-gallery-image{

    overflow:hidden;

}

.inspection-gallery-image img{

    width:100%;

    height:225px;

    display:block;

    object-fit:cover;

    transition:.5s;

}

.inspection-gallery-card:hover img{

    transform:scale(1.08);

}

.inspection-gallery-content{

    padding:22px;

    min-height:130px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

}

.inspection-gallery-content h3{

    color:#07773a;

    font-size:1.8rem;

    font-weight:700;

    line-height:1.3;

    margin-bottom:12px;

}

.inspection-gallery-content p{

    color:#4b5563;

    font-size:1rem;

    line-height:1.7;

    margin:0;

}

/*==========================
Notebook
==========================*/

@media (max-width:1280px){

    .inspection-gallery-grid{

        grid-template-columns:repeat(4,minmax(240px,1fr));

        gap:22px;

    }

}

/*==========================
Notebook pequeno
==========================*/

@media (max-width:1100px){

    .inspection-gallery-grid{

        grid-template-columns:repeat(2,320px);

        justify-content:center;

        gap:28px;

    }

}

/*==========================
Tablet
==========================*/

@media (max-width:768px){

    .inspection-gallery{

        padding:60px 0;

    }

    .inspection-gallery-grid{

        grid-template-columns:minmax(300px,380px);

        justify-content:center;

        gap:24px;

    }

    .inspection-gallery-image img{

        height:240px;

    }

    .inspection-gallery-content{

        padding:20px;

    }

    .inspection-gallery-content h3{

        font-size:1.5rem;

    }

}

/*==========================
Celulares
==========================*/

@media (max-width:480px){

    .inspection-gallery{

        padding:50px 0;

    }

    .inspection-gallery .container{

        padding:0 16px;

    }

    .inspection-gallery-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

    .inspection-gallery-card{

        width:100%;

    }

    .inspection-gallery-image img{

        height:220px;

    }

    .inspection-gallery-content{

        padding:18px;

        min-height:auto;

    }

    .inspection-gallery-content h3{

        font-size:1.3rem;

    }

    .inspection-gallery-content p{

        font-size:.95rem;

    }

}
/*====================================
        CLIENTES
====================================*/

.clients{

    padding:90px 0;

    background:#fff;

}

.clients-marquee{

    width:100%;

    overflow:hidden;

    margin-top:55px;

}

.clients-track{

    display:flex;

    width:fit-content;

    animation:marquee 30s linear infinite;

}

.clients-marquee:hover .clients-track{

    animation-play-state:paused;

}

.client-item{

    width:220px;

    height:90px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

    margin-right:50px;

}

.client-item img{

    max-width:170px;

    max-height:70px;

    width:auto;

    height:auto;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.6;

    transition:.35s;

}

.client-item:hover img{

    filter:none;

    opacity:1;

    transform:scale(1.08);

}

@keyframes marquee{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/*======================
Desktop
======================*/

@media(max-width:1400px){

.client-item{

width:190px;

margin-right:40px;

}

.client-item img{

max-width:150px;

}

}

/*======================
Notebook
======================*/

@media(max-width:1200px){

.client-item{

width:170px;

margin-right:35px;

}

.client-item img{

max-width:135px;

}

}

/*======================
Tablet
======================*/

@media(max-width:992px){

.clients{

padding:70px 0;

}

.client-item{

width:150px;

height:70px;

margin-right:30px;

}

.client-item img{

max-width:120px;

max-height:55px;

}

.clients-track{

animation-duration:24s;

}

}

/*======================
Mobile
======================*/

@media(max-width:768px){

.clients{

padding:60px 0;

}

.client-item{

width:120px;

height:60px;

margin-right:24px;

}

.client-item img{

max-width:95px;

max-height:42px;

}

.clients-track{

animation-duration:18s;

}

}

/*======================
Mobile Pequeno
======================*/

@media(max-width:480px){

.client-item{

width:95px;

margin-right:18px;

}

.client-item img{

max-width:75px;

max-height:35px;

}

.clients-track{

animation-duration:15s;

}

}