/* Reset e Base */
/* ===== FONTES AVENIR NEXT LT PRO ===== */
@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('AvenirNextLTPro-Ultralight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('AvenirNextLTPro-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('AvenirNextLTPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('AvenirNextLTPro-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('AvenirNextLTPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Avenir Next LT Pro', 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

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

/* Cores */
:root {
    --primary-green: #bcf453;
    --dark-bg: #000000;
    --gray-dark: #1a1a1a;
    --gray-medium: #333333;
    --gray-light: #666666;
    --white: #ffffff;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--primary-green));
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    padding: 2rem;
    flex-direction: column;
    gap: 1rem;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(188, 244, 83, 0.3);
}

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

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(188, 244, 83, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(188, 244, 83, 0); }
    100% { box-shadow: 0 0 0 0 rgba(188, 244, 83, 0); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(188, 244, 83, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(188, 244, 83, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(188, 244, 83, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(188, 244, 83, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(188, 244, 83, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 8s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateX(0); opacity: 1; }
    50% { opacity: 0.5; }
    100% { transform: translateX(200px); opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px var(--primary-green));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-green {
    color: var(--primary-green);
    text-shadow: 0 0 20px var(--primary-green);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-green);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* Seções */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Price Section */
.price-section {
    padding: 6rem 0;
    background: var(--gray-dark);
}

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

.price-paragraph {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.warning-text {
    font-weight: 700;
    color: #ffc107;
    font-size: 1.2rem;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    text-align: center;
    margin: 2rem 0;
}

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

.card {
    background: var(--gray-medium);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-text {
    color: #cccccc;
}

.hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(188, 244, 83, 0.2);
}

/* Factory Section */
.factory-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.factory-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.factory-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.factory-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.factory-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
}

.factory-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-top: 0.5rem;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #cccccc;
    line-height: 1.6;
}

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

.equipment-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.equipment-card {
    background: var(--gray-medium);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(188, 244, 83, 0.2);
}

.equipment-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.equipment-content {
    padding: 2rem;
}

.equipment-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.equipment-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* Gallery */
.gallery {
    padding: 6rem 0;
    background: var(--gray-dark);
}

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

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--gray-medium);
    color: #cccccc;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
    border-color: var(--primary-green);
}

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

.gallery-item {
    background: var(--gray-medium);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-name {
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gallery-category {
    padding: 0 1rem 1rem;
    color: var(--primary-green);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose */
.why-choose {
    padding: 6rem 0;
    background: var(--dark-bg);
}

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

.feature-card {
    background: var(--gray-medium);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card .feature-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-text {
    color: #cccccc;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--dark-bg) 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--gray-dark);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--primary-green));
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.footer-text {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-medium);
}

.footer-copyright {
    color: #666666;
}

/* Animações */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-up:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.4s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utilitários */
.font-bold { font-weight: 700; }

/* Responsividade */


/* ===== RESPONSIVIDADE MOBILE COMPLETA ===== */

/* Tablets e dispositivos médios (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .price-content,
    .factory-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Tablets (768px) */
@media (max-width: 768px) {
    /* Header Mobile */
    .nav-desktop, 
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .nav-mobile {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        padding: 80px 2rem 2rem;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 2rem;
        z-index: 1000;
    }
    
    .nav-mobile.active {
        display: flex;
    }
    
    .nav-mobile .nav-link {
        font-size: 1.5rem;
        padding: 1rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--gray-medium);
    }
    
    .nav-mobile .btn {
        margin-top: 2rem;
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-logo-img {
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 2rem;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Sections Mobile */
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Price Section Mobile */
    .price-section {
        padding: 4rem 0;
    }
    
    .price-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .price-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    /* Factory Section Mobile */
    .factory-section {
        padding: 4rem 0;
    }
    
    .factory-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .factory-image {
        height: 250px;
    }
    
    .feature-item {
        gap: 1rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
    }
    
    /* Gallery Mobile */
    .gallery {
        padding: 4rem 0;
    }
    
    .category-filters {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    /* Features Mobile */
    .why-choose {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-card .feature-icon {
        font-size: 2.5rem;
    }
    
    /* CTA Mobile */
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 280px;
        justify-content: center;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
}

/* Smartphones (480px) */
@media (max-width: 480px) {
    /* Container extra pequeno */
    .container {
        padding: 0 15px;
    }
    
    /* Header extra pequeno */
    .header {
        padding: 0.75rem 0;
    }
    
    .logo {
        height: 35px;
    }
    
    /* Hero extra pequeno */
    .hero-logo-img {
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-buttons {
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Sections extra pequenas */
    .section-title {
        font-size: 1.75rem !important;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    /* Price Section extra pequena */
    .price-section,
    .factory-section,
    .gallery,
    .why-choose,
    .cta-section {
        padding: 3rem 0;
    }
    
    .price-paragraph {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .warning-box {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .warning-text {
        font-size: 1.1rem;
    }
    
    .highlight-text {
        font-size: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-text {
        font-size: 0.9rem;
    }
    
    /* Factory extra pequena */
    .factory-image {
        height: 200px;
    }
    
    .factory-overlay {
        padding: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-top: 0;
    }
    
    .feature-content h4 {
        font-size: 1.2rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    /* Gallery extra pequena */
    .category-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .gallery-name {
        font-size: 1.1rem;
        padding: 0.75rem;
    }
    
    .gallery-category {
        padding: 0 0.75rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* Features extra pequenas */
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card .feature-icon {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    /* CTA extra pequena */
    .cta-title {
        font-size: 1.75rem !important;
        margin-bottom: 1rem;
    }
    
    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .cta-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Footer extra pequena */
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-text {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }
}

/* Smartphones muito pequenos (320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
}

/* Orientação paisagem para smartphones */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* Melhorias para touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .filter-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .gallery-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.6);
    }
    
    .hover-effect:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Otimizações de performance para mobile */
@media (max-width: 768px) {
    .hero-bg-animation {
        animation-duration: 12s;
        background-size: 150px 75px;
    }
    
    .pulse-effect {
        animation-duration: 3s;
    }
    
    .animate-on-scroll {
        transition-duration: 0.6s;
    }
    
    .factory-image,
    .gallery-image img {
        transition-duration: 0.2s;
    }
}

/* Correções específicas para iOS */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    .nav-mobile {
        height: -webkit-fill-available;
    }
}

/* Correções para Android */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .btn {
        -webkit-appearance: none;
        border-radius: 8px;
    }
    
    .filter-btn {
        -webkit-appearance: none;
        border-radius: 25px;
    }
}



/* ===== SEÇÃO DE DEPOIMENTOS/TESTIMONIALS ===== */

.testimonials-section {
    padding: 6rem 0;
    background: var(--gray-dark);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(51, 51, 51, 0.9) 100%);
    border: 1px solid rgba(188, 244, 83, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(188, 244, 83, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: var(--primary-green);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(188, 244, 83, 0.5);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-green);
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.author-position {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 3px;
}

.author-location {
    font-size: 0.9rem;
    color: #888888;
}

/* Controles do carrossel */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    background: rgba(51, 51, 51, 0.8);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--primary-green);
    color: var(--dark-bg);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(188, 244, 83, 0.4);
}

.carousel-indicators {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(51, 51, 51, 0.8);
    border: 2px solid var(--primary-green);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-green);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(188, 244, 83, 0.5);
}

/* Responsividade para Depoimentos */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonial-card {
        padding: 30px 20px;
        margin: 10px 0;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .testimonial-text::before {
        font-size: 3rem;
        top: -15px;
        left: -15px;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .author-position {
        font-size: 0.9rem;
    }
    
    .author-location {
        font-size: 0.8rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .carousel-controls {
        gap: 15px;
    }
    
    .carousel-indicators {
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Animações especiais para depoimentos */
@keyframes testimonialFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.testimonial-slide.active .testimonial-card {
    animation: testimonialFadeIn 0.6s ease-out;
}

/* Efeito de brilho nas estrelas */
@keyframes starGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(188, 244, 83, 0.5); }
    50% { text-shadow: 0 0 20px rgba(188, 244, 83, 0.8); }
}

.stars i {
    animation: starGlow 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

.stars i:nth-child(1) { --i: 0; }
.stars i:nth-child(2) { --i: 1; }
.stars i:nth-child(3) { --i: 2; }
.stars i:nth-child(4) { --i: 3; }
.stars i:nth-child(5) { --i: 4; }

