/* Reset e configurações básicas */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

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

/* Corrigir imagens e botões */
img, button, .btn {
    max-width: 100%;
    height: auto;
    width: auto;
}

.hero .container {
    margin: 0;
    padding: 0;
}

/* Floating Animation */
.floating-animation {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    z-index: 1;
    width: 1500px;
    height: 1500px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.floating-animation.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.floating-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-in-out;
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
}

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

/* Logo flutuante - Regra base para mobile (posição original) */
.floating-animation .floating-container .floating-item .floating-logo-img,
body .floating-animation .floating-container .floating-item .floating-logo-img,
html body .floating-animation .floating-container .floating-item .floating-logo-img {
    width: 60% !important; /* Reduzido de 75% para 60% (20% menor) */
    height: 60% !important; /* Reduzido de 75% para 60% (20% menor) */
    object-fit: contain !important;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3)) !important;
    transform: translate(5%, 10%) !important; /* Moveu para direita no mobile (de -12.5% para 5%) e manteve altura */
}

/* Logo flutuante - Regra específica para desktop (mais à direita) */
@media (min-width: 769px) {
    .floating-animation .floating-container .floating-item .floating-logo-img,
    body .floating-animation .floating-container .floating-item .floating-logo-img,
    html body .floating-animation .floating-container .floating-item .floating-logo-img {
        transform: translate(55%, 35%) !important; /* Mais à direita (55%) e mais baixo (de 25% para 35%) */
    }
}

/* Animação flutuante - Regra específica para proporção 393x873 (mobile específico) */
@media (max-width: 393px) and (max-height: 873px) {
    /* Logo flutuante */
    .floating-animation .floating-container .floating-item .floating-logo-img,
    body .floating-animation .floating-container .floating-item .floating-logo-img,
    html body .floating-animation .floating-container .floating-item .floating-logo-img {
        transform: translate(5%, 80%) !important; /* Muito mais baixo para essa proporção específica */
        z-index: 9999 !important; /* Garantir que está acima de tudo */
    }
    
    /* Imagens de produtos flutuantes */
    .floating-animation .floating-container .floating-item .floating-product-img,
    body .floating-animation .floating-container .floating-item .floating-product-img,
    html body .floating-animation .floating-container .floating-item .floating-product-img {
        transform: translate(5%, 30%) !important; /* Ajustou mais um pouquinho para esquerda (de 10% para 5%) e muito mais baixo (30%) */
        z-index: 9999 !important; /* Garantir que está acima de tudo */
    }
}

/* Animação flutuante - Regra específica para proporção 412x915 (mobile específico) */
@media (max-width: 412px) and (max-height: 915px) {
    /* Logo flutuante */
    .floating-animation .floating-container .floating-item .floating-logo-img,
    body .floating-animation .floating-container .floating-item .floating-logo-img,
    html body .floating-animation .floating-container .floating-item .floating-logo-img {
        transform: translate(5%, 80%) !important; /* Muito mais baixo para essa proporção específica */
        z-index: 9999 !important; /* Garantir que está acima de tudo */
    }
    
    /* Imagens de produtos flutuantes */
    .floating-animation .floating-container .floating-item .floating-product-img,
    body .floating-animation .floating-container .floating-item .floating-product-img,
    html body .floating-animation .floating-container .floating-item .floating-product-img {
        transform: translate(5%, 30%) !important; /* Ajustou mais um pouquinho para esquerda (de 10% para 5%) e muito mais baixo (30%) */
        z-index: 9999 !important; /* Garantir que está acima de tudo */
    }
}

.floating-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
    background: transparent;
}

.floating-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-in-out;
    animation: float 3s ease-in-out infinite;
}

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

@keyframes fallAndRise {
    0% {
        transform: translateX(0px);
        opacity: 1;
    }
    100% {
        transform: translateX(-100px);
        opacity: 0;
    }
}

@keyframes riseAndFloat {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1.2rem 0;
    height: auto;
    min-height: 60px;
}

.navbar {
    padding: 0.8rem 0;
    min-height: 60px;
    display: flex;
    align-items: center;
}

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

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

.nav-logo h2 {
    color: #1e40af;
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
}

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

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

.nav-logo .tagline {
    color: #6b7280;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1e40af;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e40af;
    transition: width 0.3s ease;
}

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

.btn-loja {
    background: #1e40af;
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

/* ===== DESKTOP STYLES (769px e acima) ===== */
@media (min-width: 769px) {
    /* Desktop Header */
    .hamburger {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Desktop Logo do Header - Maior no desktop */
    .logo-img {
        height: 140px !important; /* 40px maior no desktop */
        width: auto !important;
        object-fit: contain !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        flex-direction: row !important;
        text-align: left !important;
        right: auto !important;
        top: auto !important;
        z-index: auto !important;
    }
    
    .nav-menu li {
        margin: 0 !important;
        opacity: 1 !important;
    }
    
    /* Desktop Hero */
    .hero {
        padding: 160px 0 80px !important;
        background: linear-gradient(90deg, #113950, #11116b, #021b02, #042203) !important;
        min-height: 100vh !important;
    }
    
    /* Desktop Floating Animation */
    .floating-animation {
        position: absolute !important;
        top: 50% !important;
        right: 8% !important; /* Restaurado para posição original */
        transform: translateY(-50%) !important;
        width: 900px !important;
        height: 900px !important;
        z-index: 1 !important;
    }
    
    .floating-logo-img {
        width: 120% !important;
        height: 120% !important;
        transform: translate(-10%, -10%) !important;
    }
    
    .floating-product-img {
        width: 50% !important;
        height: 50% !important;
        object-fit: contain !important;
        filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2)) !important;
        background: transparent !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    /* Mover outras imagens flutuantes mais para direita no desktop */
    .floating-product-img {
        transform: translate(-25%, -50%) !important; /* Moveu de -35% para -25% (mais 10% para direita) */
    }
    
    /* Desktop Hero Content */
    .hero-title {
        font-size: 4.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.4rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Desktop Flip Cards */
    .flip-card {
        width: 400px !important;
        height: 500px !important;
        perspective: 1000px !important;
    }
    
    .flip-card-inner {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        text-align: center !important;
        transition: transform 0.6s !important;
        transform-style: preserve-3d !important;
    }
    
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg) !important;
    }
    
    .flip-card-front, .flip-card-back {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        backface-visibility: hidden !important;
        border-radius: 20px !important;
        padding: 2rem !important;
    }
    
    .flip-card-front {
        background: white !important;
        color: #333 !important;
    }
    
    .flip-card-back {
        background: linear-gradient(135deg, #1e40af, #3b82f6) !important;
        color: white !important;
        transform: rotateY(180deg) !important;
    }
    
    /* Desktop Floating Logo para outras páginas */
    .floating-logo-simple {
        position: absolute !important;
        top: 50% !important;
        right: -6% !important;
        transform: translateY(-50%) !important;
        width: 900px !important;
        height: 900px !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }
    
    .floating-logo-simple img {
        width: 120% !important;
        height: 120% !important;
        object-fit: contain !important;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3)) !important;
        transform: translate(-10%, -10%) !important;
        animation: float 3s ease-in-out infinite !important;
    }
    
    /* Animação completa para outras páginas (apenas logo) */
    .floating-animation-simple {
        position: absolute !important;
        top: 50% !important;
        right: -6% !important;
        transform: translateY(-50%) !important;
        width: 900px !important;
        height: 900px !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }
    
    .floating-container-simple {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .floating-item-simple {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        opacity: 0 !important;
        transform: translateY(20px) !important;
        transition: opacity 0.8s ease-in-out !important;
        pointer-events: none !important;
    }
    
    .floating-item-simple.active {
        opacity: 1 !important;
        transform: translateY(0) !important;
        animation: floatSimple 3s ease-in-out infinite !important;
    }
    
    /* Animação específica para outras páginas */
    @keyframes floatSimple {
        0%, 100% {
            transform: translateY(0px) !important;
        }
        50% {
            transform: translateY(-10px) !important;
        }
    }
    
    .floating-logo-simple-img {
        width: 120% !important;
        height: 120% !important;
        object-fit: contain !important;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3)) !important;
        transform: translate(-10%, -10%) !important;
    }
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
    
/* ===== MOBILE STYLES (768px e abaixo) ===== */
@media (max-width: 768px) {
    /* Mobile Body */
    body {
        font-size: 14px !important;
    }
    
    /* Mobile Floating Animation */
    .floating-animation {
        top: 100px !important;
        left: 52% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 200px !important;
        height: 200px !important;
        z-index: 5 !important;
        position: absolute !important;
    }
    
    .floating-logo-img {
        width: 100% !important;
        height: 100% !important;
        transform: translate(0%, 0%) !important;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3)) !important;
    }
    
    /* Mobile Hero */
    .hero {
        padding: 20px 0 60px !important;
        background: linear-gradient(90deg, #113950, #11116b, #021b02, #042203) !important;
        min-height: 100vh !important;
        margin: 0 !important;
        width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin-top: 60px !important;
    }
    
    /* Mobile Hero Container */
    .hero-container {
        padding-right: 20px !important;
        width: 100% !important;
        max-width: none !important;
        padding-left: 20px !important;
    }
    
    /* Mobile Hamburger */
    .hamburger {
        display: flex !important;
        position: absolute !important;
        top: 8px !important;
        right: 16px !important;
        width: 48px !important;
        height: 48px !important;
        z-index: 1001 !important;
        background: linear-gradient(135deg, #1e40af, #3b82f6) !important;
        border-radius: 15px !important;
        box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4) !important;
        border: 2px solid rgba(255, 255, 255, 0.2) !important;
        padding: 14px !important;
        transition: all 0.3s ease !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .hamburger:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    }
    
    .bar {
        background: white !important;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        background-color: #fff;
        overflow-x: hidden;
        transition: right 0.3s ease;
        z-index: 998;
        flex-direction: column;
        text-align: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
    }
    
    .hero-container {
        padding-right: 270px;
        width: 100% !important;
        max-width: none !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-content,
    .ecommerce-content,
    .products-content,
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Ajuste específico para seção about no mobile */
    .about-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 2rem !important;
    }
    
    .about-text {
        order: 1 !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .about-text h2 {
        text-align: center !important;
    }
    
    .about-text p {
        text-align: center !important;
    }
    
    .about-image {
        order: 2 !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    /* Centralizar seção quality na página de produtos */
    .quality-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 2rem !important;
    }
    
    .quality-text {
        order: 1 !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .quality-image {
        order: 2 !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .about-placeholder {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        margin: 0 auto !important;
    }
    
    .contact-content {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 20px !important;
    }
    
    /* Ajustes específicos para contato no mobile */
    .contact-info {
        margin-bottom: 2rem !important;
        text-align: center !important;
    }
    
    .contact-item {
        margin-bottom: 1.5rem !important;
        padding: 0 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .whatsapp-contact {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem !important;
    }
    
    .whatsapp-content h3 {
        font-size: 1.5rem !important;
    }
    
    .whatsapp-content p {
        font-size: 1rem !important;
    }
    
    .btn-whatsapp {
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        line-height: 1 !important;
    }
    
    .btn-whatsapp i {
        color: white !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .form-group {
        margin-bottom: 1.5rem !important;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .whatsapp-contact {
        padding: 1rem !important;
    }
    
    .whatsapp-content h3 {
        font-size: 1.3rem !important;
    }
    
    .whatsapp-content p {
        font-size: 0.9rem !important;
    }
    
    .btn-whatsapp {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.9rem !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        line-height: 1 !important;
    }
    
    .btn-whatsapp i {
        color: white !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .flip-cards-grid {
        justify-content: center !important;
        gap: 2rem !important;
        padding: 0 20px !important;
    }
    
    .flip-card {
        width: 100% !important;
        max-width: 320px !important;
        height: 400px !important;
        margin: 0 auto !important;
        border-radius: 15px !important;
    }
    
    .flip-card-inner {
        border-radius: 15px !important;
    }
    
    .flip-card-front, .flip-card-back {
        padding: 1.5rem 1rem !important;
        border-radius: 15px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .flip-card-front h3,
    .flip-card-back h3 {
        font-size: 1rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .flip-card-front p,
    .flip-card-back p {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.6rem !important;
    }
    
    .flip-card-back ul {
        padding-left: 0.6rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .flip-card-back li {
        font-size: 0.7rem !important;
        margin-bottom: 0.3rem !important;
        line-height: 1.1 !important;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .product-category {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-category.reverse {
        direction: ltr;
    }
    


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



    .hero-placeholder,
    .about-placeholder,
    .product-placeholder,
    .ecommerce-placeholder {
        width: 250px;
        height: 250px;
        font-size: 5rem;
    }

    .loja-logo-img {
        padding: 15px;
    }

    .ecommerce-features {
        flex-direction: column;
        gap: 1rem;
    }
}
    
    .nav-logo {
        padding-left: 16px;
    }
    
    .logo-img {
        height: auto;
        max-width: 50px !important /* Reduzido de 120px para 50px (58% menor) */; /* Reduzido de 120px para 84px (30% menor) */
        width: auto;
    }
    
    .hamburger {
        top: 10px;
        right: 16px;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #1e40af, #3b82f6);
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(30, 64, 175, 0.3);
        border: none;
        padding: 10px;
        transition: all 0.3s ease;
    }
    
    .hamburger:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
    }
    
    .bar {
        background: white !important;
        border-radius: 1px;
        transition: all 0.3s ease;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        background-color: #fff;
        overflow-x: hidden;
        transition: right 0.3s ease;
        z-index: 998;
        flex-direction: column;
        text-align: center;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
    }
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(90deg, #113950, #11116b, #021b02, #042203) !important;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}



.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .hero-content {
        max-width: 600px;
        text-align: left;
        padding-left: 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    white-space: nowrap;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

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

.btn-secondary:hover {
    background: white;
    color: #1f2937;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: #1f2937;
    line-height: 1.1;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 1rem auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #0f172a;
    color: white;
    min-height: 100vh;
    position: relative;
    width: 100%;
    margin: 0;
}

.services .section-header h2 {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.services .section-header p {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Flip Cards Grid */
.flip-cards-grid {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.flip-card {
    width: 400px;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.flip-card {
    perspective: 1000px;
    height: 550px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-card-front {
    background: white;
    color: #1f2937;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.flip-card-back {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    transform: rotateY(180deg);
}

.flip-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.flip-card-front h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.flip-card-front p {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1.6;
}

.flip-card-back h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.flip-card-back ul {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}



.flip-card-back li {
    padding: 0.5rem 0;
    color: #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.flip-card-back li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.flip-card-back .btn {
    margin-top: auto;
    background: white;
    color: #4a7c59;
    border: none;
    transition: all 0.3s ease;
}

.flip-card-back .btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

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

.service-card {
    background: #1e293b;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #334155;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

.service-card-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.service-card-cta h3 {
    color: white;
}

.service-card-cta p {
    color: rgba(255, 255, 255, 0.9);
}

.service-card-cta .btn {
    margin-top: 1rem;
    background: white;
    color: #1e40af;
    border: none;
}

.service-card-cta .btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #1e293b;
    color: white;
    width: 100%;
    margin: 0;
}

.products .section-header h2 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.products .section-header p {
    color: #f1f5f9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.products-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.product-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-category.reverse {
    direction: rtl;
}

.product-category.reverse > * {
    direction: ltr;
}

.product-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.product-info p {
    font-size: 1.1rem;
    color: #f1f5f9;
    margin-bottom: 1rem;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #f8fafc;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.product-features i {
    color: #10b981;
    font-size: 1.2rem;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}



/* Features Section */
.features {
    padding: 80px 0;
    background: #0f172a;
    color: white;
    width: 100%;
    margin: 0;
}

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

.feature-card {
    background: #1e293b;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #334155;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    width: 100%;
    margin: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
    text-align: left;
    line-height: 1.1;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: flex-start;
    align-items: center;
}

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

.about-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1e40af;
}

.about-stat .stat-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.about-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.about-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.3);
}

.about-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.about-logo-img {
    height: 450px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* E-commerce Section */
.ecommerce {
    padding: 80px 0;
    background: #f8fafc;
    width: 100%;
    margin: 0;
}

.ecommerce-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ecommerce-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #1f2937;
    line-height: 1.1;
}

.ecommerce-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.ecommerce-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.ecommerce-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e40af;
    font-weight: 600;
}

.ecommerce-feature i {
    font-size: 1.2rem;
}

.ecommerce-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ecommerce-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(90deg, #113950, #11116b, #021b02, #042203);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
}

.loja-logo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease;
    border-radius: 20px;
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #6b7280;
    font-style: italic;
    line-height: 1.6;
}

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

.author-info h4 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: #1e40af;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.6;
}

.whatsapp-contact {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-content {
    text-align: center;
    max-width: 400px;
}

.whatsapp-content i {
    font-size: 4rem;
    color: #25d366;
    margin-bottom: 1rem;
}

.whatsapp-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.whatsapp-content p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    line-height: 1;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.btn-whatsapp i {
    font-size: 1.3rem;
    color: white !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e40af;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.footer-logo {
    margin-bottom: 1rem;
    text-align: center;
    margin-left: -40px;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    filter: brightness(0.8);
}

.footer-section p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

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

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

.social-links a:hover {
    background: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    color: #6b7280;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.footer-location p {
    margin: 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 0.9rem;
}

.newsletter-form .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-container {
        gap: 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}



    .flip-cards-grid {
        justify-content: center;
    }

    .flip-cards-grid {
        justify-content: center;
    }

    .flip-card {
        width: 350px;
        height: 500px;
    }
    
    .flip-card {
        height: 280px;
    }
    
    .flip-card-front, .flip-card-back {
        padding: 1.5rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .product-category {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-category.reverse {
        direction: ltr;
    }
    


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



    .hero-placeholder,
    .about-placeholder,
    .product-placeholder,
    .ecommerce-placeholder {
        width: 250px;
        height: 250px;
        font-size: 5rem;
    }

    .loja-logo-img {
        padding: 15px;
    }

    .ecommerce-features {
        flex-direction: column;
        gap: 1rem;
    }
}


    
    .header {
        height: 60px;
        position: fixed;
        padding: 0 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar {
        height: 60px;
        padding: 0;
        width: 100%;
    }
    
    .nav-container {
        height: 60px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-logo {
        padding-left: 16px;
    }
    
    .logo-img {
        height: auto;
        max-width: 50px !important /* Reduzido de 120px para 50px (58% menor) */; /* Reduzido de 120px para 84px (30% menor) */
        width: auto;
    }
    
    .hamburger {
        top: 10px;
        right: 16px;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #1e40af, #3b82f6);
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(30, 64, 175, 0.3);
        border: none;
        padding: 10px;
        transition: all 0.3s ease;
    }
    
    .hamburger:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
    }
    
    .bar {
        background: white !important;
        border-radius: 1px;
        transition: all 0.3s ease;
    }
    
    .nav-menu {
        width: 0;
    }
    
    .nav-menu.active {
        width: 200px;
    }
    
    body {
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }
    
    .floating-animation {
        top: 50%;
        right: 0%;
        transform: translateY(-50%);
        width: 180px;
        height: 180px;
    }
    
    .floating-logo-img {
        width: 100%;
        height: 100%;
        transform: translate(0%, 0%);
    }
    
    .hero {
        padding: 20px 0 40px;
        background: linear-gradient(90deg, #113950, #11116b, #021b02, #042203) !important;
        min-height: 100vh !important;
        margin: 0 !important;
        width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        margin-top: 60px !important;
    }
    

    
    .hero-container {
        padding: 0 10px;
        width: 100% !important;
        max-width: none !important;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-container {
        gap: 1.5rem;
        padding-right: 200px;
    }

    .loja-logo-img {
        padding: 10px;
    }
}

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

.service-card,
.feature-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: auto;
}

/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA DE SERVIÇOS ===== */

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.overview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.overview-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}

.overview-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.overview-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #374151;
    font-size: 1.1rem;
    justify-content: center;
}

.overview-features i {
    color: #10b981;
    font-size: 1.2rem;
}

.overview-text .btn {
    display: inline-block;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}



/* Distributors Section */
.distributors {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.distributors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.distributor-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.distributor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.distributor-card.premium {
    border-color: #4a7c59;
    position: relative;
}

.distributor-card.premium::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4a7c59 0%, #2d5a3d 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
}

.distributor-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    text-align: center;
}

.distributor-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
}

.distributor-badge {
    background: #e5e7eb;
    color: #374151;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.distributor-badge.premium {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5a3d 100%);
    color: white;
}

.distributor-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.distributor-features {
    list-style: none;
    margin-bottom: 2rem;
}

.distributor-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #374151;
}

.distributor-features i {
    color: #10b981;
    font-size: 1.2rem;
}

.distributor-card .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA DE PRODUTOS ===== */

/* Products Overview */
.products-overview {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1;
}

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

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    background: #f3f4f6;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover {
    background: #e5e7eb;
    color: #374151;
}

.category-tab.active {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

/* Quality Section */
.quality-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.quality-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.quality-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.quality-image {
    display: flex;
    justify-content: center;
}

.quality-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

/* Product Categories Section */
.product-categories-section {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1;
}

.product-category {
    display: none;
}

.product-category.active {
    display: block;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
}

.category-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #1e40af;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.product-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsividade para páginas específicas */
@media (max-width: 768px) {
    .distributors-grid {
        grid-template-columns: 1fr;
    }
    
    .distributor-card {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quality-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tab {
        width: 100%;
        max-width: 300px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA DA EMPRESA ===== */

/* About Overview */
.about-overview {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1;
}

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

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

/* History Section */
.history-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateX(-50%);
    transform-origin: top;
    animation: drawLine 2s ease-out forwards;
    animation-play-state: paused;
}

.timeline.animate::before {
    animation-play-state: running;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: timelineItemAppear 1s ease-out forwards;
    animation-delay: 0.5s;
    animation-play-state: paused;
}

.timeline.animate .timeline-item {
    animation-play-state: running;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(1) { animation-delay: 0.5s; }
.timeline-item:nth-child(2) { animation-delay: 1.5s; }
.timeline-item:nth-child(3) { animation-delay: 2.5s; }
.timeline-item:nth-child(4) { animation-delay: 3.5s; }
.timeline-item:nth-child(5) { animation-delay: 4.5s; }
.timeline-item:nth-child(6) { animation-delay: 5.5s; }

.timeline-year {
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 120px;
    text-align: center;
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.timeline-year::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    z-index: -1;
}

.timeline-year.animate::before {
    transform: translateX(0);
}

.timeline-year .year-text {
    opacity: 0;
    transform: translateY(20px);
    animation: yearTextAppear 0.6s ease-out forwards;
    animation-delay: 0.3s;
    animation-play-state: paused;
}

.timeline-year.animate .year-text {
    animation-play-state: running;
}

.timeline-year .logo-wf {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    animation: logoAppear 0.6s ease-out forwards;
    animation-delay: 0.8s;
    animation-play-state: paused;
}

.timeline-year.animate .logo-wf {
    animation-play-state: running;
}

.timeline-content {
    background: #1e293b;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    margin: 0 2rem;
    flex: 1;
    position: relative;
    border: 1px solid #334155;
    opacity: 0;
    transform: translateX(50px);
    animation: contentAppear 1s ease-out forwards;
    animation-delay: 1.2s;
    animation-play-state: paused;
}

.timeline.animate .timeline-content {
    animation-play-state: running;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.timeline-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Mission Vision Values */
.mission-vision-values {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1;
}

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

.mvv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.mvv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}

.values-list {
    list-style: none;
    text-align: center;
    width: 100%;
    max-width: 280px;
}

.values-list li {
    padding: 0.8rem 0;
    color: #374151;
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
    text-align: left;
    margin-bottom: 0.5rem;
    background: #f8fafc;
    border-radius: 8px;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    transition: all 0.3s ease;
}

.values-list li:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.1rem;
}



/* Quality Commitment */
.quality-commitment {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

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

.quality-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quality-feature i {
    color: #1e40af;
    font-size: 1.5rem;
}

.quality-feature span {
    font-weight: 600;
    color: #374151;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: white;
    position: relative;
    z-index: 1;
}

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

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.team-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.team-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* ===== ANIMAÇÕES DA LINHA DO TEMPO ===== */
@keyframes drawLine {
    0% {
        transform: translateX(-50%) scaleY(0);
    }
    100% {
        transform: translateX(-50%) scaleY(1);
    }
}

@keyframes timelineItemAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes yearTextAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

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

/* Responsividade para página da empresa */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 40px;
    }
    
    .timeline-year {
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        margin: 0;
        width: 100%;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-features {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
        margin-left: -24px;
    }
    
    .footer-section p {
        text-align: center;
    }
    
    .footer-section ul li {
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
} 

/* Regras globais para mobile - prevenir overflow horizontal */
@media (max-width: 768px) {
    html, body {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    section, header, footer, .hero, .services, .products, .features, .about, .ecommerce, .footer {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }
    
    .container, .hero-container, .about-content, .ecommerce-content, .products-content, .features-grid, .services-grid {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }
    
    img, button, .btn, .floating-animation, .floating-container, .floating-item {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    
    .floating-animation {
        width: 250px !important;
        height: 250px !important;
        max-width: 250px !important;
    }
}

@media (max-width: 480px) {
    html, body {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .logo-img {
        max-width: 50px !important /* Reduzido de 120px para 50px (58% menor) */ !important; /* Reduzido de 120px para 84px (30% menor) */
        width: auto !important;
        height: auto !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    section, header, footer, .hero, .services, .products, .features, .about, .ecommerce, .footer {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }
    
    .container, .hero-container, .about-content, .ecommerce-content, .products-content, .features-grid, .services-grid {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box !important;
    }
    
    img, button, .btn, .floating-animation, .floating-container, .floating-item {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    
    .floating-animation {
        width: 160px !important;
        height: 160px !important;
        max-width: 160px !important;
        top: 100px !important;
        left: 52% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        position: absolute !important;
    }
    
    .floating-logo-img {
        width: 100% !important;
        height: 100% !important;
        filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.3)) !important;
    }
    
    /* Flip cards para telas pequenas */
    .flip-cards-grid {
        gap: 1.5rem !important;
        padding: 0 15px !important;
    }
    
    .flip-card {
        max-width: 280px !important;
        height: 350px !important;
    }
    
    .flip-card-front, .flip-card-back {
        padding: 1rem 0.8rem !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .flip-card-front h3,
    .flip-card-back h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .flip-card-front p,
    .flip-card-back p {
        font-size: 0.7rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.5rem !important;
    }
    
    .flip-card-back ul {
        padding-left: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Ajustes para seções no mobile */
    .services {
        padding: 3rem 0 !important;
    }
    
    .services .section-header h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .services .section-header p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 2rem !important;
    }
    
    .flip-cards-grid {
        gap: 1.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Ajustes para seções em telas pequenas */
    .services {
        padding: 2rem 0 !important;
    }
    
    .services .section-header h2 {
        font-size: 1.6rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .services .section-header p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .flip-cards-grid {
        gap: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Ajuste específico para seção about em telas pequenas */
    .about-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }
    
    .about-text {
        text-align: center !important;
        width: 100% !important;
    }
    
    .about-text h2 {
        text-align: center !important;
    }
    
    .about-text p {
        text-align: center !important;
    }
    
    .about-image {
        text-align: center !important;
        width: 100% !important;
    }
    
    /* Centralizar seção quality na página de produtos em telas pequenas */
    .quality-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }
    
    .quality-text {
        text-align: center !important;
        width: 100% !important;
    }
    
    .quality-image {
        text-align: center !important;
        width: 100% !important;
    }
    
    .about-placeholder {
        max-width: 250px !important;
    }
    
    /* Ajustes para contato em telas pequenas */
    .contact-content {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 15px !important;
    }
    
    .contact-info {
        margin-bottom: 1.5rem !important;
        text-align: center !important;
    }
    
    .contact-item {
        margin-bottom: 1rem !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .form-group {
        margin-bottom: 1rem !important;
    }
    
    .contact-form button {
        display: block !important;
        margin: 0 auto !important;
        width: auto !important;
        min-width: 180px !important;
    }
    
    /* Ajustes para seção da loja no mobile */
    .ecommerce {
        padding: 0 !important;
    }
    
    .ecommerce-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }
    
    .ecommerce-text {
        order: 1 !important;
        text-align: center !important;
    }
    
    .ecommerce-image {
        order: 2 !important;
        text-align: center !important;
    }
    
    .ecommerce-features {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin: 1rem 0 !important;
    }
    
    .ecommerce-feature {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    
    .ecommerce-feature i {
        font-size: 1.2rem !important;
        color: #1e40af !important;
    }
    
    .ecommerce-feature span {
        font-size: 0.9rem !important;
        color: #1e40af !important;
    }
    
    .ecommerce-text .btn {
        display: block !important;
        margin: 2rem auto 0 !important;
        width: auto !important;
        min-width: 200px !important;
    }
    
    .ecommerce-text {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .ecommerce-placeholder {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        height: 200px !important;
        background: linear-gradient(90deg, #113950, #11116b, #021b02, #042203) !important;
        border-radius: 20px !important;
        box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3) !important;
        margin: 0 auto !important;
        max-width: 300px !important;
    }
    
    .loja-logo-img {
        max-width: 250px !important;
        height: auto !important;
        filter: brightness(0) invert(1) !important;
        object-fit: contain !important;
    }
    
    /* Melhorias específicas do hamburger mobile */
    .hamburger .bar {
        background: white !important;
        border-radius: 3px !important;
        transition: all 0.3s ease !important;
        width: 20px !important;
        height: 2px !important;
        margin: 2px 0 !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
    }
    

    
    /* Ajustes para seção da loja em telas pequenas */
    .ecommerce {
        padding: 0 !important;
    }
    
    .ecommerce-content {
        gap: 1.5rem !important;
    }
    
    .ecommerce-features {
        gap: 0.8rem !important;
        margin: 1rem 0 !important;
    }
    
    .ecommerce-feature i {
        font-size: 1.1rem !important;
    }
    
    .ecommerce-feature span {
        font-size: 0.8rem !important;
    }
    
    .ecommerce-text .btn {
        min-width: 180px !important;
        margin: 1.5rem auto 0 !important;
    }
    
    .ecommerce-text {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .ecommerce-placeholder {
        height: 180px !important;
        max-width: 280px !important;
        border-radius: 15px !important;
    }
    
    .loja-logo-img {
        max-width: 220px !important;
    }
    
    /* Ajustes para primeiras seções das outras páginas no mobile */
    .hero {
        text-align: center !important;
        padding: 120px 0 60px !important;
    }
    
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 0 20px !important;
    }
    
    .hero-content {
        width: 100% !important;
        max-width: 600px !important;
        margin: 0 auto !important;
    }
    
    .hero-badge {
        display: none !important;
    }
    
    .hero-title {
        text-align: center !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-subtitle {
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .hero-buttons .btn {
        width: auto !important;
        min-width: 200px !important;
        margin: 0 auto !important;
    }
    
    /* Ajustes para animação flutuante simples */
    .floating-animation-simple {
        position: absolute !important;
        top: 120px !important;
        left: 52% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 200px !important;
        height: 200px !important;
        z-index: 5 !important;
    }
    
    .floating-container-simple {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .floating-item-simple {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .floating-logo-simple-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3)) !important;
    }
    
    /* Ajustes para primeiras seções das outras páginas em telas pequenas */
    .hero {
        padding: 100px 0 50px !important;
    }
    
    .hero-container {
        padding: 0 15px !important;
    }
    
    .hero-content {
        max-width: 500px !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }
    
    .hero-buttons .btn {
        min-width: 180px !important;
        font-size: 0.9rem !important;
    }
    
    .floating-animation-simple {
        width: 160px !important;
        height: 160px !important;
        top: 100px !important;
        left: 52% !important;
        transform: translateX(-50%) !important;
    }
    
    .floating-logo-simple-img {
        filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.3)) !important;
    }
    
    /* Ajustes para rodapé no mobile */
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 2rem !important;
    }
    
    .footer-section {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    .footer-logo {
        text-align: center !important;
        margin-bottom: 1rem !important;
        padding-left: 5px !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
    }
    
    .footer-logo-img {
        max-width: 140px !important;
        height: auto !important;
        margin: 0 auto 0 0 !important;
    }
    
    .footer-section h4 {
        text-align: center !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-section p {
        text-align: center !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-section ul {
        text-align: center !important;
        list-style: none !important;
        padding: 0 !important;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem !important;
        text-align: center !important;
    }
    
    .footer-section ul li a {
        text-align: center !important;
        display: inline-block !important;
    }
    
    .social-links {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1rem !important;
        margin-top: 1rem !important;
    }
    
    .newsletter-form {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .newsletter-form input {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .newsletter-form .btn {
        width: auto !important;
        min-width: 150px !important;
        margin: 0 auto !important;
    }
    
    .footer-bottom-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    .footer-info p {
        text-align: center !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-location p {
        text-align: center !important;
    }
    
    /* Ajustes para rodapé em telas pequenas */
    .footer-content {
        gap: 1.5rem !important;
    }
    
    .footer-section {
        margin-bottom: 1rem !important;
    }
    
    .footer-logo-img {
        max-width: 50px !important /* Reduzido de 120px para 50px (58% menor) */ !important; /* Reduzido de 120px para 84px (30% menor) */
        margin: 0 auto 0 0 !important;
    }
    
    .footer-section h4 {
        font-size: 1.1rem !important;
    }
    
    .footer-section p {
        font-size: 0.9rem !important;
    }
    
    .footer-section ul li {
        font-size: 0.9rem !important;
    }
    
    .newsletter-form input {
        max-width: 250px !important;
    }
    
    .newsletter-form .btn {
        min-width: 120px !important;
        font-size: 0.9rem !important;
    }
    

} 

/* Regras específicas para iPhone (375x667px) */
@media screen and (max-width: 375px) {
    .floating-animation {
        top: 70px !important;
    }
    
    .floating-animation-simple {
        top: 70px !important;
    }
}

/* Regras específicas para iPhone (390x844px) */
@media screen and (max-width: 390px) and (min-width: 376px) {
    .floating-animation {
        top: 130px !important;
    }
    
    .floating-animation-simple {
        top: 130px !important;
    }
}

/* Regras específicas para iPhone (390x725px) */
@media screen and (max-width: 390px) and (min-width: 376px) and (max-height: 725px) {
    .floating-animation {
        top: 80px !important;
    }
    
    .floating-animation-simple {
        top: 80px !important;
    }
}

/* Regras específicas para iPhone (390x725px) na página de produtos */
@media screen and (max-width: 390px) and (min-width: 376px) and (max-height: 725px) {
    .floating-animation-simple {
        top: 150px !important;
    }
}

/* Regras específicas para tela 400x628px */
@media screen and (max-width: 400px) and (max-height: 628px) {
    .floating-animation {
        top: -100px !important;
        position: absolute !important;
        z-index: 5 !important;
        left: 52% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 200px !important;
        height: 200px !important;
    }
    
    .floating-animation-simple {
        top: -100px !important;
        position: absolute !important;
        z-index: 5 !important;
        left: 52% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 200px !important;
        height: 200px !important;
    }
}

/* Regra de emergência para forçar posição da logo flutuante */
@media screen and (max-width: 400px) {
    .floating-animation {
        top: -100px !important;
        position: absolute !important;
        z-index: 999 !important;
    }
    
    .floating-animation-simple {
        top: -100px !important;
        position: absolute !important;
        z-index: 999 !important;
    }
}

/* Regras específicas para tela 412x915px */
@media screen and (max-width: 412px) and (max-height: 915px) {
    .floating-animation {
        top: 50px !important;
        position: absolute !important;
        z-index: 5 !important;
        left: 52% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 200px !important;
        height: 200px !important;
    }
    
    .floating-animation-simple {
        top: 50px !important;
        position: absolute !important;
        z-index: 5 !important;
        left: 52% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 200px !important;
        height: 200px !important;
    }
    
    /* Logo flutuante - movimento para baixo dentro da regra específica */
    .floating-animation .floating-container .floating-item .floating-logo-img {
        transform: translate(5%, 80%) !important; /* Muito mais baixo para essa proporção específica */
        z-index: 9999 !important; /* Garantir que está acima de tudo */
    }
    
    /* Imagens de produtos flutuantes - movimento para baixo dentro da regra específica */
    .floating-animation .floating-container .floating-item .floating-product-img {
        transform: translate(5%, 30%) !important; /* Muito mais baixo para essa proporção específica */
        z-index: 9999 !important; /* Garantir que está acima de tudo */
    }
}

/* Regra específica para ícone do WhatsApp - FORÇAR BRANCO E ALINHAMENTO */
.btn-whatsapp i.fab.fa-whatsapp {
    color: white !important;
    display: inline-block !important;
    vertical-align: middle !important;
    font-size: 1.3rem !important;
    margin-right: 0.5rem !important;
    line-height: 1 !important;
} 