/* Reset e Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Previne elementos de ultrapassar a largura da tela */
* {
    max-width: 100%;
}

:root {
    --primary-green: #43E456;
    --dark-bg: #1E1F27;
    --darker-bg: #0F1014;
    --text-white: #ffffff;
    --text-gray: #9CA3AF;
    --border-color: rgba(67, 228, 86, 0.1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-white);
    overflow-x: hidden;
    max-width: 100%;
    line-height: 1.6;
}

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

/* Regra Global para Imagens Responsivas */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navegação */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: transparent;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(30, 31, 39, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-icon {
    transform: rotate(6deg);
}

.logo-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--dark-bg);
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-gray);
}

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

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-gray);
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link svg {
    width: 16px;
    height: 16px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
    background: var(--primary-green);
    color: var(--dark-bg);
    box-shadow: 0 0 24px rgba(67, 228, 86, 0.4);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 12px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: var(--primary-green);
    background: rgba(255, 255, 255, 0.05);
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    touch-action: manipulation;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

/* Botão de Ligação Flutuante (Mobile Only) */
.phone-float {
    position: fixed;
    bottom: 6rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #43E456 0%, #3BC64A 100%);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(67, 228, 86, 0.4);
    z-index: 9997;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.phone-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(67, 228, 86, 0.6);
}

.phone-float svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

@media (max-width: 768px) {
    .phone-float {
        display: flex;
    }
}

/* Performance: Lazy Loading Images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.8), 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* Hero Section */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.background-effect {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.background-effect::before,
.background-effect::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(67, 228, 86, 0.05);
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.background-effect::before {
    width: 400px;
    height: 400px;
    top: 20%;
    left: 10%;
}

.background-effect::after {
    width: 500px;
    height: 500px;
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

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

.hero-content {
    text-align: center;
    position: relative;
    z-index: 15;
    padding: 1rem 1rem;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(67, 228, 86, 0.3);
    border-radius: 8px;
    color: var(--primary-green);
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--primary-green);
    text-shadow: 0 0 20px rgba(67, 228, 86, 0.6);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle .text-white {
    color: var(--text-white);
    font-weight: 600;
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-green);
}

.divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 20;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    z-index: 20;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    background: var(--primary-green);
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(67, 228, 86, 0.3);
    position: relative;
    z-index: 20;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(67, 228, 86, 0.5);
    background: rgba(67, 228, 86, 1);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--primary-green);
    border-radius: 50px;
}

.btn-secondary:hover {
    background: rgba(67, 228, 86, 0.1);
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8px 0;
}

.wheel {
    width: 6px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 4px;
    animation: scroll 2s infinite;
}

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

/* Sections */
.section {
    padding: 1rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(67, 228, 86, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.card-icon {
    height: 160px;
    background: linear-gradient(135deg, rgba(67, 228, 86, 0.2), transparent);
    border-radius: 16px 16px 0 0;
    margin: -1.5rem -1.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon svg {
    width: 64px;
    height: 64px;
    stroke: var(--primary-green);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.card:hover h3 {
    color: var(--primary-green);
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.card ul li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    flex-shrink: 0;
}

/* Service Cards */
.service-card {
    cursor: pointer;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(67, 228, 86, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-green);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-green);
    transition: stroke 0.3s ease;
}

.service-card:hover .service-icon svg {
    stroke: var(--dark-bg);
}

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

.service-card ul li {
    padding-left: 0.5rem;
}

/* Process Cards */
.process-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: rgba(67, 228, 86, 0.3);
}

.process-number {
    width: 48px;
    height: 48px;
    background: rgba(67, 228, 86, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    background: var(--primary-green);
    color: var(--dark-bg);
}

.process-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.process-card:hover h3 {
    color: var(--primary-green);
}

.process-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: scale(1.05);
    border-color: rgba(67, 228, 86, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(67, 228, 86, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-green);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-green);
    transition: stroke 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    stroke: var(--dark-bg);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Tags */
.card-title-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-title-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-green);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(67, 228, 86, 0.1);
    border: 1px solid rgba(67, 228, 86, 0.3);
    border-radius: 8px;
    color: var(--primary-green);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Client List */
.client-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: center;
    justify-items: center;
}

.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.client-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.client-logo {
    width: 100%;
    max-width: 140px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-item:hover .client-logo {
    opacity: 1;
    filter: brightness(0) invert(1);
}

/* FAQ - Mais compacto */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-green);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer p {
    padding: 0.75rem 1.5rem 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form - Layout mais compacto */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.contact-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

.contact-header p {
    color: var(--text-gray);
    font-size: 1.125rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(30, 31, 39, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-gray);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(67, 228, 86, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

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

.info-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.info-card svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-green);
    margin: 0 auto 1rem;
}

.info-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-text {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Footer - Mais compacto */
.footer {
    background: rgba(30, 31, 39, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
    margin-top: 3rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo-icon-small {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-small svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark-bg);
}

.footer-col h3,
.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--text-gray);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navbar */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(30, 31, 39, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .menu-toggle {
        display: block;
    }

    /* Grid Responsivo */
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .client-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .client-logo {
        max-width: 100px;
    }

    /* Formulários - FIX CRÍTICO */
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
        width: calc(100% - 1rem);
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Títulos - Redução de Tamanho */
    h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

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

    /* Seções - Redução de Padding */
    .section {
        padding: 2rem 1rem !important;
    }

    .hero {
        padding: 6rem 1rem 3rem !important;
        min-height: 0 !important;
    }

    /* Container Mobile */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    /* Cards e Elementos */
    .card {
        padding: 1.5rem 1rem;
    }

    /* Botões - Área de Toque */
    .btn {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Imagens Responsivas */
    img {
        max-width: 100%;
        height: auto;
    }

    /* WhatsApp Float - Mobile */
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 1rem;
        right: 1rem;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

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

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

    .section-header h2 {
        font-size: 1.75rem;
    }

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

    .badges {
        justify-content: center;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .client-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .client-logo {
        max-width: 120px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ========================================
   NOVOS ESTILOS - MELHORIAS 2024
   ======================================== */

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-green);
    color: var(--dark-bg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(67, 228, 86, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(67, 228, 86, 0.5);
}

/* ========================================
   LIGHTBOX MODAL
   ======================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    gap: 2rem;
    align-items: center;
    animation: lightboxZoom 0.3s ease;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 80vh;
    position: relative;
    pointer-events: auto;
}

.lightbox-image-wrapper img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 31, 39, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(67, 228, 86, 0.2);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10;
}

.lightbox-counter span {
    color: var(--primary-green);
    font-weight: 600;
}

.lightbox-info {
    flex: 0 0 350px;
    background: rgba(30, 31, 39, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(67, 228, 86, 0.1);
    pointer-events: auto;
    z-index: 10;
}

.lightbox-info h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.lightbox-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lightbox-acervo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(100, 120, 180, 0.2);
    border: 1px solid rgba(100, 120, 180, 0.4);
    border-radius: 8px;
    color: rgba(150, 170, 220, 1);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.lightbox-acervo-badge svg {
    color: rgba(150, 170, 220, 1);
    flex-shrink: 0;
}

.lightbox-acervo-badge:hover {
    background: rgba(100, 120, 180, 0.3);
    border-color: rgba(100, 120, 180, 0.6);
}

.lightbox-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lightbox-details .detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.lightbox-details .detail-item svg {
    color: var(--primary-green);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(30, 31, 39, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(67, 228, 86, 0.2);
    color: var(--primary-green);
    min-width: 48px;
    min-height: 48px;
    width: 50px;
    height: 50px;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999;
    pointer-events: auto;
    touch-action: manipulation;
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(67, 228, 86, 0.4);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ========================================
   GALERIA DE PROJETOS - ESTILO PREMIUM
   ======================================== */

/* Filtros de Projetos */
.project-filters {
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.search-wrapper {
    position: relative;
    margin-bottom: 0.75rem;
}

.search-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(67, 228, 86, 0.1);
}

.search-wrapper svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    pointer-events: none;
}

/* Botões de Filtro */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-green);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.filter-btn:hover {
    border-color: var(--primary-green);
    color: var(--text-white);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--dark-bg);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(67, 228, 86, 0.3);
}

.filter-btn.active::before {
    width: 200%;
    height: 200%;
}

/* Contador de Projetos */
.project-count {
    text-align: center;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--primary-green);
    font-weight: 700;
    background: rgba(67, 228, 86, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(67, 228, 86, 0.2);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Grid de Projetos - Otimizado para maior densidade */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Cards de Projetos - Estilo Premium Compacto */
.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    border-radius: 18px;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(67, 228, 86, 0.2);
    border-color: rgba(67, 228, 86, 0.4);
}

/* Imagem do Projeto com Overlay - Reduzida */
.project-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

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

/* Gradiente Overlay para melhor legibilidade */
.project-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
    transition: height 0.4s ease;
}

.project-card:hover .project-image::before {
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
}

/* Badge do Projeto */
.project-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary-green);
    color: var(--dark-bg);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(67, 228, 86, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

/* Badge de Acervo Técnico */
.acervo-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    color: #ffffff;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.3s ease;
}

.acervo-badge svg {
    width: 14px;
    height: 14px;
    stroke: #ffffff;
    stroke-width: 2.5;
    opacity: 0.9;
}

.acervo-badge:hover {
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Conteúdo do Card */
.project-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.project-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-white);
    transition: color 0.3s ease;
    flex: 1;
}

.project-card:hover .project-header h3 {
    color: var(--primary-green);
}

/* Tags de Categoria */
.project-tag {
    padding: 0.375rem 0.875rem;
    background: rgba(67, 228, 86, 0.15);
    border: 1px solid rgba(67, 228, 86, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-green);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.project-card:hover .project-tag {
    background: var(--primary-green);
    color: var(--dark-bg);
    transform: scale(1.05);
}

/* Descrição do Projeto */
.project-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

/* Detalhes do Projeto */
.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.project-card:hover .detail-item {
    color: var(--text-white);
}

.detail-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-green);
    flex-shrink: 0;
}

/* Ações nos Cards de Projetos */
.project-actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 0.75rem;
}

/* Botão Secundário - Estilo Premium */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    background: transparent;
    color: var(--primary-green);
    border: 1.5px solid rgba(67, 228, 86, 0.6);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--dark-bg);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 228, 86, 0.4);
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: translateX(4px);
}

/* Ícones nas Imagens dos Projetos - Premium */
.project-image-icon {
    display: none;
}

.project-card:hover .project-image-icon {
    transform: scale(1.15) rotate(5deg);
}

.project-image-icon svg {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
    transition: all 0.4s ease;
}

.project-card:hover .project-image-icon svg {
    filter: drop-shadow(0 12px 24px rgba(67, 228, 86, 0.6));
}

/* Select Personalizado */
select {
    width: 100%;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

select:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.08);
}

select option {
    background: var(--dark-bg);
    color: var(--text-white);
    padding: 0.5rem;
}

/* Loading Spinner */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Notificação */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: var(--primary-green);
    color: var(--dark-bg);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    z-index: 10000;
    font-weight: 600;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* FAQ Accordion */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Mapa - Container para Google Maps */
.map-container {
    position: relative;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.map-address {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Ajustes para Select nos Formulários */
.form-row select {
    background: rgba(255, 255, 255, 0.05);
}

/* Responsividade para Novos Componentes */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .notification {
        right: 1rem;
        left: 1rem;
        text-align: center;
    }
    
    /* Projetos Mobile */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .project-image {
        height: 200px;
    }
    
    .btn-secondary {
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* Lightbox Mobile - FIX TOUCH ISSUES */
    .lightbox-content {
        flex-direction: column;
        max-width: 95%;
        max-height: 95%;
        gap: 1rem;
    }
    
    .lightbox-info {
        flex: none;
        width: 100%;
        max-height: 40vh;
        overflow-y: auto;
        padding: 1.5rem;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        min-width: 48px;
        min-height: 48px;
        width: 54px;
        height: 54px;
        z-index: 9999;
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        background: rgba(30, 31, 39, 0.95);
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
    
    .lightbox-prev {
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .lightbox-next {
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .lightbox-image-wrapper {
        max-height: 50vh;
    }
    
    .lightbox-counter {
        bottom: 1rem;
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .project-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-badge {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.7rem;
        padding: 0.375rem 0.75rem;
    }
    
    .project-details {
        gap: 0.75rem;
    }
    
    .detail-item {
        font-size: 0.8rem;
    }

    /* Extra Small - Ajustes Críticos */
    h1 {
        font-size: 1.75rem !important;
    }

    .hero-title {
        font-size: 1.5rem !important;
    }

    .container {
        padding: 0 0.75rem;
    }

    .section {
        padding: 1.5rem 0.75rem !important;
    }

    .card,
    .contact-form-wrapper {
        padding: 1.25rem 0.875rem;
        margin: 0 0.25rem;
    }
}

/* ========================================
   MELHORIAS VISUAIS AVANÇADAS - 2025
   ======================================== */

/* Animações de Entrada - Scroll Reveal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Classes de Animação */
.reveal {
    opacity: 0;
}

.reveal.active {
    animation: fadeInUp 0.8s ease forwards;
}

.reveal-left.active {
    animation: fadeInLeft 0.8s ease forwards;
}

.reveal-right.active {
    animation: fadeInRight 0.8s ease forwards;
}

.reveal-scale.active {
    animation: scaleUp 0.6s ease forwards;
}

.reveal-rotate.active {
    animation: rotateIn 0.7s ease forwards;
}

/* Delay nas animações para efeito cascata */
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }
.reveal-delay-5 { animation-delay: 0.5s; }

/* Typing Effect - DISABLED FOR CLEANER UX */
.typing-effect {
    display: inline-block;
    /* Animation removed for immediate readability */
}

/* Keyframes mantidos mas não usados */
@keyframes typing {
    from { max-width: 0; }
    to { max-width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* Partículas Animadas no Background */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Progress Bar no Topo */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, #00ff88 100%);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--primary-green);
}

/* Cards com Tilt 3D Effect */
.card-tilt {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.card-tilt:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-5deg);
}

/* Background Gradient Animado */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-animated {
    background: linear-gradient(270deg, var(--primary-green), #00ff88, var(--primary-green));
    background-size: 200% 200%;
    animation: gradientMove 5s ease infinite;
}

/* Timeline Vertical */
.timeline-container {
    position: relative;
    padding: 2rem 0;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-green), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    margin-right: calc(50% + 3rem);
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    margin-left: calc(50% + 3rem);
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border: 4px solid var(--bg-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--primary-green);
    animation: pulse 2s infinite;
}

.timeline-content {
    background: var(--card-bg);
    border: 1px solid rgba(67, 228, 86, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Efeito de Brilho em Cards */
@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(67, 228, 86, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.card-shine:hover::before {
    animation: shine 1s ease;
}

/* Ripple Effect em Botões */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    min-width: 300px;
    padding: 1.25rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(67, 228, 86, 0.2);
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-color: var(--primary-green);
}

.toast.error {
    border-color: #ff4757;
}

.toast-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--primary-green);
}

.toast.error .toast-icon {
    color: #ff4757;
}

.toast-message {
    flex: 1;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Loading Spinner Customizado */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 16, 20, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.spinner-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(67, 228, 86, 0.2);
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modal Lightbox para Galeria */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10003;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: scaleUp 0.4s ease;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

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

.lightbox-close:hover {
    transform: rotate(90deg);
    background: #00ff88;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(67, 228, 86, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: var(--primary-green);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--primary-green);
    color: var(--bg-primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* Formulário Multi-Step Wizard */
.wizard-container {
    position: relative;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(67, 228, 86, 0.2);
    z-index: 0;
}

.wizard-step {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
}

.wizard-step-number {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.5rem;
    background: var(--card-bg);
    border: 2px solid rgba(67, 228, 86, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.wizard-step.active .wizard-step-number {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--bg-primary);
    box-shadow: 0 0 20px var(--primary-green);
    transform: scale(1.1);
}

.wizard-step.completed .wizard-step-number {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--bg-primary);
}

.wizard-step-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.wizard-step.active .wizard-step-label {
    color: var(--primary-green);
    font-weight: 600;
}

.wizard-content {
    min-height: 350px;
}

.wizard-panel {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.wizard-panel.active {
    display: block;
}

.wizard-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 1rem;
}

/* Validação Visual em Tempo Real */
.form-group.valid input,
.form-group.valid select,
.form-group.valid textarea {
    border-color: var(--primary-green);
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: #ff4757;
}

.validation-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group.valid .validation-icon.check,
.form-group.invalid .validation-icon.error {
    opacity: 1;
}

.validation-message {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.form-group.invalid .validation-message {
    opacity: 1;
    transform: translateY(0);
    color: #ff4757;
}

/* Progress Bar do Formulário */
.form-progress {
    height: 4px;
    background: rgba(67, 228, 86, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.form-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), #00ff88);
    border-radius: 2px;
    transition: width 0.4s ease;
    box-shadow: 0 0 10px var(--primary-green);
}

/* Upload de Arquivos com Drag & Drop */
.file-upload-area {
    border: 2px dashed rgba(67, 228, 86, 0.3);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(67, 228, 86, 0.05);
}

.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: var(--primary-green);
    background: rgba(67, 228, 86, 0.1);
}

.file-upload-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--primary-green);
}

.file-upload-text {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.file-upload-hint {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.file-preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(67, 228, 86, 0.2);
}

.file-preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: #ff4757;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.file-preview-remove:hover {
    transform: scale(1.1);
}

/* Timer de Urgência */
.urgency-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(255, 107, 107, 0.2));
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 8px;
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.timer-icon {
    width: 20px;
    height: 20px;
}

.timer-text {
    display: flex;
    gap: 0.5rem;
}

.timer-number {
    min-width: 30px;
    text-align: center;
    background: rgba(255, 71, 87, 0.2);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
}

/* Status Online Indicator */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.offline {
    background: #ff4757;
    animation: none;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, 
        rgba(67, 228, 86, 0.1) 25%, 
        rgba(67, 228, 86, 0.2) 50%, 
        rgba(67, 228, 86, 0.1) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-title {
    height: 2rem;
    margin-bottom: 1rem;
    width: 60%;
}

.skeleton-card {
    height: 200px;
}

/* Depoimentos com Slider */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: 0 2rem;
}

.testimonial-content {
    background: var(--card-bg);
    border: 1px solid rgba(67, 228, 86, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-green);
    object-fit: cover;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    background: rgba(67, 228, 86, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* Contador Animado */
.counter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    display: block;
}

/* FAQ com Busca */
.faq-search {
    position: relative;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-search input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--card-bg);
    border: 1px solid rgba(67, 228, 86, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
}

.faq-search input:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 228, 86, 0.1);
}

.faq-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    width: 20px;
    height: 20px;
}

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

/* Responsividade para novas features */
@media (max-width: 768px) {
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 3rem;
        margin-right: 0;
        text-align: left;
    }
    
    .timeline-line {
        left: 10px;
    }
    
    .timeline-dot {
        left: 10px;
    }
    
    .wizard-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wizard-steps::before {
        display: none;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .toast {
        right: 1rem;
        left: 1rem;
        min-width: auto;
    }
    
    .counter {
        font-size: 2rem;
    }
    
    .typing-effect {
        font-size: 1.5rem;
    }
}
/* Contact Page - Layout Otimizado */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-section,
.map-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(67, 228, 86, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    stroke: var(--primary-green);
}

.contact-item-content {
    flex: 1;
}

.contact-item-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.contact-item-content p,
.contact-item-content a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: var(--primary-green);
}

.map-card {
    height: 100%;
}

.map-container {
    margin-top: 1rem;
}

.map-address {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

    .lightbox-content {
        flex-direction: column;
        max-width: 95%;
        max-height: 95%;
        gap: 1rem;
    }

    .lightbox-info {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .lightbox-image-wrapper {
        max-height: 50vh;
    }

    .lightbox-image-wrapper img {
        max-height: 50vh;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        display: none; /* Hide navigation arrows on mobile */
    }
}

/* ========================================
   UTILIT\u00c1RIAS - Classes para estilos inline
   ======================================== */

.logo-height-50 {
    height: 50px;
}

.logo-height-40 {
    height: 40px;
    margin-bottom: 10px;
}

.footer-link-green {
    color: var(--primary-green);
    text-decoration: none;
}

.footer-link-gray {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

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

.max-width-800 {
    max-width: 800px;
    margin: 0 auto;
}

.max-width-900 {
    max-width: 900px;
}

.margin-bottom-half {
    margin-bottom: 0.5rem;
}

.margin-bottom-1 {
    margin-bottom: 1rem;
}

.margin-bottom-2 {
    margin-bottom: 2rem;
}

.margin-top-1 {
    margin-top: 1rem;
}

.margin-top-half {
    margin-top: 0.5rem;
}

.margin-top-1-half {
    margin-top: 1.5rem;
}

.margin-top-2 {
    margin-top: 2rem;
}

.padding-3 {
    padding: 3rem;
}

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

.form-progress-bar-33 {
    width: 33.33%;
}

.heading-green {
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.select-auto-width {
    width: auto;
    min-width: 200px;
}

.btn-display-none {
    display: none;
}

.counter-green {
    color: var(--primary-green);
    font-weight: 600;
}

.width-100 {
    width: 100%;
}

.text-secondary {
    color: var(--text-secondary);
}

.margin-top-075 {
    margin-top: 0.75rem;
}

.margin-top-025 {
    margin-top: 0.25rem;
}

.margin-bottom-1-half {
    margin-bottom: 1.5rem;
}

.margin-top-3 {
    margin-top: 3rem;
}

.margin-top-4 {
    margin-top: 4rem;
}

.margin-bottom-3 {
    margin-bottom: 3rem;
}

.font-small {
    font-size: 0.875rem;
}

.max-width-900 {
    max-width: 900px;
    margin: 0 auto;
}

.social-links-flex {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.iframe-map {
    border: 0;
    border-radius: 16px;
}

.heading-green-center {
    text-align: center;
    margin-bottom: 1rem;
    color: #43E456;
}

.text-center-gray {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.display-none {
    display: none;
}

.svg-margin-auto {
    margin: 0 auto 1rem;
}

.protocol-margin {
    margin-top: 1rem;
}

/* Loading Spinner Animation */
.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Form Validation Styles */
input:required,
textarea:required {
    background-image: none;
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
    border-color: #ff4444;
}

input:valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
    border-color: var(--primary-green);
}

/* Button Disabled State */
button:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

/* Logo Dimensions - Fixed sizes for brand consistency */
.logo img {
    width: 68px !important;
    height: 50px !important;
    object-fit: contain;
    max-width: 68px;
}

.footer-logo img {
    width: 161px !important;
    height: 40px !important;
    display: block !important;
    object-fit: contain;
}

/* Hero Subtitle Enhancement - Canal de Denúncia */
.hero-subtitle.enhanced {
    font-size: 1.15rem;
    font-weight: 500;
    color: #43E456;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
