/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Garantir que html e body ocupem 100% da largura */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --shadow: 0 2px 10px rgba(30, 58, 138, 0.1);
    --shadow-hover: 0 4px 20px rgba(30, 58, 138, 0.2);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

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

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

/* Cabeçalho */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

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

.logo-img {
    width: 36px !important;
    height: 36px !important;
    object-fit: contain !important;
    border-radius: 6px !important;
    margin-right: 14px !important;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.logo h1 {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: #1e3a8a !important;
    margin: 0 !important;
    font-family: 'Outfit', 'Inter', sans-serif !important;
    letter-spacing: -0.02em !important;
    text-transform: none !important;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 0 1px 2px rgba(30, 58, 138, 0.1) !important;
    transition: all 0.3s ease !important;
}

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

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    margin-top: 80px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero-content {
    padding: 4rem 0;
}

.hero h2 {
    font-size: 3rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

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

.hero-placeholder {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.hero-placeholder span {
    font-size: 1.2rem;
    margin-top: 1rem;
}

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

.section-header h2 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

/* Sobre Nós */
.about {
    padding: 2rem 0 6rem 0;
    background: var(--white);
}

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

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text ul {
    list-style: none;
    margin-top: 1rem;
}

.about-text li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.about-text i {
    color: var(--primary-color);
}

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

.about-img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-placeholder {
    width: 250px;
    height: 250px;
    background: var(--light-gray);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3rem;
    text-align: center;
    border: 3px solid var(--primary-color);
}

.about-placeholder span {
    font-size: 1rem;
    margin-top: 1rem;
    color: var(--gray);
}

/* Produtos */
.products {
    padding: 0 0 6rem 0;
    margin-top: -2rem;
    background: var(--light-gray);
}

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

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 200px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



.product-content {
    padding: 2rem;
}

.product-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-content ul {
    list-style: none;
    margin-top: 1rem;
}

.product-content li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.product-content i {
    color: var(--primary-color);
}

/* Benefícios */
.benefits {
    padding: 6rem 0;
    background: var(--white);
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.benefit-item h3 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

/* Depoimentos */
.testimonials {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

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

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

.testimonial-content p {
    font-style: italic;
    color: var(--gray);
    margin: 0;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    color: var(--dark-gray);
}

.author-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Contato */
.contact {
    padding: 2rem 0 6rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 1rem;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: left;
}

.contact-details p {
    margin: 0 0 0.5rem 0;
    color: var(--gray);
    text-align: left;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.whatsapp-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

/* Responsividade para a seção de contato */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        margin-bottom: 0.5rem;
    }
    
    .contact-details {
        text-align: center;
        width: 100%;
    }
    
    .contact-details h3 {
        text-align: center;
        margin-bottom: 0.8rem;
    }
    
    .contact-details p {
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 1.5rem 0 4rem 0;
    }
    
    .contact-content {
        gap: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Formulário */
.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Rodapé */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 5rem 0 3rem;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.footer .container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Seção Mapa */
.map-section {
    padding: 4rem 0;
    background: var(--white);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border-radius: 20px;
}

/* Novo rodapé minimalista */
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: center;
    justify-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    align-items: center;
}

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

.footer-logo-img {
    width: 88px;
    height: 88px;
    border-radius: 12px;
    object-fit: contain;
    border: 2px solid var(--primary-color);
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 300px;
}

.footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--white);
    padding-bottom: 0.5rem;
    display: inline-block;
    text-align: center;
}

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

.footer-section li {
    margin-bottom: 0.8rem;
    padding: 0.3rem 0;
    color: var(--white);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section li i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* Estilos para a seção Trabalhe Conosco no rodapé */
.careers-simple {
    text-align: center;
}

.careers-simple p {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.careers-email-simple {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.careers-email-simple:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.careers-email-simple i {
    color: var(--white);
}

/* Seção footer-bottom removida - conteúdo reorganizado */

/* Estilos removidos - não mais necessários */

.copyright-section {
    margin-top: 1.5rem;
    text-align: center;
}

.copyright-section p {
    color: var(--white);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.developer-section {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    justify-content: center;
}

.tgm-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.developer-text {
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0.8;
    white-space: nowrap;
}

.developer-info span {
    color: var(--white);
    font-size: 0.85rem;
    opacity: 0.8;
}

.tgm-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tgm-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.tgm-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: contain;
}

.tgm-name {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.tgm-name-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.tgm-name-link:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* Responsividade do rodapé */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
        justify-items: center;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-info {
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }
    
    .developer-section {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .tgm-container {
        flex-direction: row;
        gap: 0.8rem;
        justify-content: center;
    }
    
    .footer-description {
        text-align: center;
        max-width: 250px;
        font-size: 0.9rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .footer-section li {
        justify-content: center;
    }
    
    /* Reduzir tamanhos para mobile */
    .footer-logo-img {
        width: 60px;
        height: 60px;
        border-radius: 8px;
    }
    
    .footer-logo h3 {
        font-size: 1.2rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .careers-simple p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .careers-email-simple {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .developer-text {
        font-size: 0.8rem;
    }
    
    .tgm-logo-img {
        width: 36px;
        height: 36px;
        border-radius: 6px;
    }
    
    .tgm-name {
        font-size: 0.8rem;
    }
    
    .tgm-logo {
        padding: 0.4rem 0.8rem;
        gap: 0.4rem;
    }
    
    .copyright-section p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        align-items: center;
        justify-items: center;
    }
    
    .footer-brand {
        text-align: center;
        align-items: center;
    }
    
    .footer-info {
        justify-content: center;
        align-items: center;
    }
    
    .footer-logo-img {
        width: 50px;
        height: 50px;
        border-radius: 6px;
    }
    
    .footer-logo h3 {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
        max-width: 200px;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .careers-simple p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .careers-email-simple {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .developer-section {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .developer-text {
        font-size: 0.75rem;
    }
    
    .tgm-container {
        flex-direction: row;
        gap: 0.6rem;
        justify-content: center;
    }
    
    .tgm-logo-img {
        width: 28px;
        height: 28px;
        border-radius: 4px;
    }
    
    .tgm-name {
        font-size: 0.75rem;
    }
    
    .tgm-logo {
        flex-direction: row;
        gap: 0.3rem;
        padding: 0.3rem 0.6rem;
    }
    
    .copyright-section p {
        font-size: 0.75rem;
    }
    
    .copyright-section {
        margin-top: 1rem;
    }
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Estilos do rodapé já definidos acima */
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    /* Logo responsivo para mobile */
    .logo h1 {
        font-size: 1rem !important;
    }
    
    .logo-img {
        width: 24px !important;
        height: 24px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .logo h1 {
        font-size: 1rem !important;
    }
    
    .logo-img {
        width: 24px !important;
        height: 24px !important;
    }
    
    .logo-placeholder {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Garantir que todas as seções ocupem 100% da largura */
.products, .about, .contact, .careers {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.products .container, .about .container, .contact .container, .careers .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Estados de hover e focus */
.nav-link:focus,
.btn:focus,
.whatsapp-float:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
