/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden; /* Previne scroll horizontal */
}

/* Classe para prevenir scroll quando menu está aberto */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #efd033;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Animação do hamburger quando ativo */
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Media Queries para Mobile */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding-top: 50px;
        z-index: 999;
    }

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

    .nav-menu li {
        margin: 20px 0;
    }

    .nav-link {
        font-size: 18px;
        font-weight: 500;
        padding: 15px 20px;
        display: block;
        border-radius: 8px;
        margin: 0 20px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background-color: rgba(239, 208, 51, 0.1);
        color: #efd033;
    }

    /* Overlay para fechar menu ao clicar fora */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Estilos adicionais para melhor UX */
@media screen and (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .logo-image {
        height: 35px;
        max-width: 150px;
    }

    .nav-link {
        font-size: 16px;
    }
}

/* Animações suaves */
.nav-menu {
    transition: left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Prevenção de problemas de scroll em iOS */
@supports (-webkit-touch-callout: none) {
    body.menu-open {
        position: fixed;
        overflow: hidden;
        width: 100%;
        height: 100%;
    }
}


/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000 50%, #efd033 90%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #efd033 30%, #efd033 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.5;
}


.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: buttonFadeIn 1s ease-out 1s forwards;
}

.cta-button:hover {
    background: #20b954;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* Vídeo Desktop (à direita) */
.desktop-video {
    text-align: center;
    animation: fadeInRight 1s ease-out 0.5s both;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.desktop-video iframe {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.desktop-video:hover iframe {
    transform: scale(1.02);
}

/* Vídeo Mobile (escondido no desktop) */
.mobile-video {
    display: none;
}

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

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

@keyframes videoFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Responsividade Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-content {
        width: 100%;
        max-width: 600px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    /* Mostrar vídeo mobile */
    .mobile-video {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 25px auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateY(30px);
        animation: videoFadeIn 1s ease-out 0.5s forwards;
    }
    
    .mobile-video iframe {
        width: 100%;
        height: 200px;
        border: none;
        border-radius: 12px;
    }
    
    /* Esconder vídeo desktop */
    .desktop-video {
        display: none;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 15px;
        margin-top: 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .mobile-video {
        margin: 20px auto;
        border-radius: 10px;
    }
    
    .mobile-video iframe {
        height: 180px;
        border-radius: 10px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
        margin-top: 20px;
    }
}

/* Responsividade para tablets grandes */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .desktop-video iframe {
        height: 280px;
    }
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.section-header p {
    font-size: 1.25rem;
    color: #ffffff;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #000000;
}

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

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.about-text p {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #ffffff;
}

.benefits-list i {
    color: #25d366;
    font-size: 18px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px #efd03389;
}

/* Estilos base para a seção de produtos */
.products {
    padding: 80px 0;
    background: #000000;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #ffffff;
}

/* Wrapper para controlar o layout */
.products-wrapper {
    position: relative;
}

/* Grid para desktop (mantém o layout atual) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    transition: transform 0.3s ease;
}

/* Estilos dos cards de produto */
.product-card {
    background: rgb(0, 0, 0);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px #2525257a;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #000000;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px #efd033;
    border-color: #efd033;
}

.product-image {
    margin-bottom: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-info h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-price {
    font-size: 1.3rem;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-description {
    font-size: 0.95rem;
    color: #efd033;
    margin-bottom: 20px;
    line-height: 1.4;
}

.product-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.product-btn:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.product-btn i {
    font-size: 1.1rem;
}

/* Controles do carrossel (ocultos por padrão) */
.products-carousel-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.products-carousel-btn {
    background: #efd033;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.products-carousel-btn:hover {
    background: #efd033;
    transform: scale(1.1);
}

.products-carousel-btn:disabled {
    background: #ffffff;
    cursor: not-allowed;
    transform: none;
}

.products-carousel-dots {
    display: flex;
    gap: 8px;
}

.products-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-dot.active {
    background: #efd033;
    transform: scale(1.2);
}

/* Media queries para mobile */
@media (max-width: 768px) {
    .products {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Transformar grid em carrossel no mobile */
    .products-wrapper {
        overflow: hidden;
    }
    
    .products-grid {
        display: flex;
        transition: transform 0.3s ease;
        gap: 20px;
    }
    
    .product-card {
        flex: 0 0 100%;
        margin: 0;
        padding: 20px;
    }
    
    .product-image {
        height: 180px;
        margin-bottom: 15px;
    }
    
    .product-info h3 {
        font-size: 1.3rem;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .product-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    /* Mostrar controles do carrossel no mobile */
    .products-carousel-controls {
        display: flex;
    }
    
    .products-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .products {
        padding: 40px 0;
    }
    
    .products .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .product-card {
        padding: 18px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .product-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .products-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .products-dot {
        width: 10px;
        height: 10px;
    }
    
    .products-carousel-dots {
        gap: 6px;
    }
}

/* Estilos adicionais para melhor experiência */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Estilos base para a seção de clientes */
.testimonials {
    padding: 80px 0;
    background: #000000;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #ffffff;
}

/* Wrapper para controlar o layout */
.testimonials-wrapper {
    position: relative;
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

/* Grid para desktop */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    transition: transform 0.3s ease;
}

/* Estilos dos cards de clientes */
.client-card {
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px #efd03389;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

.client-card:nth-child(1) { animation-delay: 0.1s; }
.client-card:nth-child(2) { animation-delay: 0.2s; }
.client-card:nth-child(3) { animation-delay: 0.3s; }
.client-card:nth-child(4) { animation-delay: 0.4s; }
.client-card:nth-child(5) { animation-delay: 0.5s; }
.client-card:nth-child(6) { animation-delay: 0.6s; }

.client-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Container da imagem */
.client-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.client-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.client-image-container:hover .client-image {
    transform: scale(1.1);
}

/* Overlay da imagem */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #efd033;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.image-overlay i {
    color: rgb(0, 0, 0);
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.client-image-container:hover .image-overlay {
    opacity: 1;
}

.client-image-container:hover .image-overlay i {
    transform: scale(1);
}

/* Informações do cliente */
.client-info {
    padding: 25px;
    text-align: center;
}

.client-info h3 {
    font-size: 1.3rem;
    color: #efd033;
    margin-bottom: 8px;
    font-weight: 600;
}

.client-location {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.client-comment {
    min-height: 20px;
    color: #ffffff;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Modal para ampliar imagem */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.image-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.modal-image {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    display: block;
    margin: auto;
}


.modal-info {
    padding: 20px;
    text-align: center;
    background: rgb(255, 255, 255);
}

.modal-info h3 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 5px;
}

.modal-info p {
    color: #505050;
    font-size: 1rem;
}

/* Controles do carrossel (ocultos por padrão) */
.carousel-controls {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    background: linear-gradient(135deg, #efd033, #efd033);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px #000000;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #efd033, #efd033);
    transform: scale(1.1);
    box-shadow: 0 6px 20px #000000;
}

.carousel-btn:disabled {
    background: #ffffff;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: #efd033;
    transform: scale(1.2);
    border-color: #efd033;
    box-shadow: 0 0 10px #000000;
}

.dot:hover:not(.active) {
    background: #000000;
    transform: scale(1.1);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Media queries para tablet */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .client-image-container {
        height: 220px;
    }
}

/* Media queries para mobile */
@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Transformar grid em carrossel no mobile */
    .testimonials-wrapper {
        overflow: hidden;
        padding: 0 10px;
    }
    
    .testimonials-grid {
        display: flex;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 20px;
        padding: 0 10px;
    }
    
    .client-card {
        flex: 0 0 calc(100% - 20px);
        margin: 0;
        animation: none;
        opacity: 1;
    }
    
    .client-image-container {
        height: 200px;
    }
    
    .client-info {
        padding: 20px;
    }
    
    /* Mostrar controles do carrossel no mobile */
    .carousel-controls {
        display: flex;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Modal responsivo */
    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
        margin: 10px;
    }
    
    .modal-image {
        max-width: 100%;
    }
    
    .modal-info {
        padding: 15px;
    }
    
    .modal-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonials .container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .client-card {
        flex: 0 0 calc(100% - 10px);
    }
    
    .client-image-container {
        height: 180px;
    }
    
    .client-info {
        padding: 15px;
    }
    
    .client-info h3 {
        font-size: 1.2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    .carousel-dots {
        gap: 8px;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }
}

/* Animações de entrada para elementos que entram na viewport */
.client-card.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

/* Suporte para redução de movimento */
@media (prefers-reduced-motion: reduce) {
    .client-card,
    .section-header,
    .testimonials-wrapper {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .client-card:hover {
        transform: none;
    }
    
    .client-image-container:hover .client-image {
        transform: none;
    }
    
    .testimonials-grid {
        transition: none;
    }
}


/* Contact Section */
.contact {
    padding: 100px 0;
    background: #000000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: #efd033;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.contact-item p {
    color: #a7a7aa;
    line-height: 1.5;
}

.contact-cta {
    background: #efd033;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-cta h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.contact-cta p {
    color: #424242;
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: #efd033;
    color: rgb(0, 0, 0);
    padding: 60px 0 30px;
}

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

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #000000;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dbdbdb;
}

.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2d2d2f;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #dbdbdb;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d2d2f;
    color: #000000;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background: #20b954;
    transform: scale(1.1);
}

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

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .hamburger .bar {
    background-color: #ffffff;
}

    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000000;
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 255, 255, 0.062);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .product-card,
    .testimonial-card,
    .contact-cta {
        padding: 20px;
    }
}



.logo-link, .logo-image {
    border: none !important;
    outline: none !important;
}


