/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	max-width: 100vw;
}
html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.top-bar {
    background: #1B4332;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1B4332, #2D5A3D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 6px;
    vertical-align: middle;
}

.icon1 {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-right: 9px;
    vertical-align: middle;
}

.icon3 {
    width: 30px !important;
    height: 30px !important;
    object-fit: contain;
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
    transform: translateY(10px); /* ajusta o alinhamento fino */
}




.brand-info h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1B4332;
    margin-bottom: 2px;
}

.brand-info p {
    font-size: 12px;
    color: #666;
}

.nav-desktop {
    display: flex;
    gap: 32px;
}

.nav-desktop a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: #1B4332;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    border-top: 1px solid #eee;
}

.nav-mobile a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    padding: 8px 0;
}

.nav-mobile.active {
    display: flex;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #D8F3DC, #B7E4C7);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1F2937;
}

.text-accent {
    color: #1B4332;
}

.text-green {
    color: #2D5A3D;
}

.hero-text p {
    font-size: 1.25rem;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: #25D366;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-primary-large:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.btn-secondary-large {
    border: 2px solid #1B4332;
    color: #1B4332;
    padding: 14px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary-large:hover {
    background: #1B4332;
    color: white;
}

.trust-indicators {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 12px;
}

.indicator-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.indicator-icon.green {
    background: #D8F3DC;
    color: #1B4332;
}

.indicator-icon.blue {
    background: #B7E4C7;
    color: #2D5A3D;
}

.indicator-icon.amber {
    background: #95D5B2;
    color: #1B4332;
}

.indicator div strong {
    display: block;
    font-weight: 600;
    color: #1F2937;
}

.indicator div small {
    font-size: 0.875rem;
    color: #6B7280;
}

.hero-image {
    position: relative;
}

.image-container {
    background: linear-gradient(135deg, #95D5B2, #40916C);
    border-radius: 24px;
    padding: 32px;
    transform: rotate(3deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-container img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    transform: rotate(-3deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.floating-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: #40916C;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-align: center;
    transform: rotate(12deg);
    box-shadow: 0 8px 20px rgba(64,145,108,0.3);
}

.floating-badge .large {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
}

.floating-badge .small {
    display: block;
    font-size: 0.75rem;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #F9FAFB;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #6B7280;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    justify-items: center;
}

.product-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
    max-width: 400px;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.card-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.card-content p {
    color: #6B7280;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features {
    list-style: none;
    margin-bottom: 24px;
}

.features li {
    color: #1B4332;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.btn-order {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    
    /* Novo: Flexbox para alinhar o ícone e o texto */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-order:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.service-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    transition: all 0.3s;
}

.service-card:hover {
    background: #F9FAFB;
    transform: translateY(-4px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.service-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #D8F3DC, #B7E4C7);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.whatsapp-section {
    display: flex;
    justify-content: center;
}

.whatsapp-card {
    background: white;
    padding: 48px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

.whatsapp-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.whatsapp-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.whatsapp-card p {
    color: #6B7280;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.btn-whatsapp-large {
    background: #25D366;
    color: white;
    padding: 20px 40px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-whatsapp-large:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.info-card p {
    color: #6B7280;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1B4332;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #40916C;
}

.footer-brand p {
    color: #9CA3AF;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-weight: 600;
    margin-bottom: 16px;
    color: #40916C;
}

.footer-links a {
    display: block;
    color: #9CA3AF;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: #9CA3AF;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h2 {
        font-size: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-text h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 24px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .contact-info span {
        display: block;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .products,
    .services,
    .contact {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .whatsapp-card {
        padding: 32px 24px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 24px;
    }
	
	
}

html, body {
    overflow-x: hidden;
}

* {
    max-width: 100vw;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .image-container {
        transform: none;
        padding: 16px; /* reduz para não ficar muito apertado */
    }

    .image-container img {
        transform: none;
        height: auto; /* opcional: evita corte em celulares muito estreitos */
    }
}
