/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores do Manual de Identidade - Exatas conforme especificação */
    --primary-color: #860D0A;      /* Dark Red */
    --secondary-color: #003880;    /* Yale Blue */
    --tertiary-color: #888888;     /* Battleship Gray */
    --white: #FFFFFF;
    --black: #000000;
    
    /* Variações do Vermelho conforme manual */
    --red-light: #E41511;
    --red-dark: #720A09;
    --red-darker: #5E0908;
    --red-darkest: #4B0807;
    --red-darkest-2: #380605;
    
    /* Variações do Azul conforme manual */
    --blue-light: #0061E0;
    --blue-dark: #00357A;
    --blue-darker: #002C66;
    --blue-darkest: #002352;
    --blue-darkest-2: #001B3D;
    
    /* Tipografia conforme manual */
    --font-primary: 'Poppins', sans-serif;
    
    /* Transições */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
    
    /* Sombras */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Bordas */
    --border-radius: 8px;
    --border-radius-large: 16px;
    
    /* Alturas padrão */
    --header-height-desktop: 80px;
    --header-height-mobile: 70px;
}

/* Base */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 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: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--tertiary-color);
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-align: center;
    justify-content: center;
    min-height: 44px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-whatsapp-outline {
    background: transparent;
    color: #25D366;
    border: 2px solid #25D366;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-align: center;
    justify-content: center;
    min-height: 44px;
}

.btn-whatsapp-outline:hover {
    background: #25D366;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20b358;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: var(--transition);
    height: var(--header-height-desktop);
}

.navbar {
    padding: 1rem 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    width: 100%;
}

/* Logo Header */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto; /* Não cresce nem encolhe */
}

.logo-header {
    width: 50px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.tagline {
    font-size: 0.8rem;
    color: var(--tertiary-color);
    font-weight: 400;
}

/* Navegação */
.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 80%;
}

/* Informações de Contato no Header */
.contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Aumentado para melhor espaçamento */
    flex: 0 0 auto; /* Não cresce nem encolhe */
}

.phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--tertiary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.phone i {
    color: var(--primary-color);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    padding: 10px 18px; /* Aumentado para melhor proporção */
    border-radius: 25px; /* Mais arredondado */
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-btn:hover {
    background: #20b358;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Menu Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    z-index: 10001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section - VERSÃO DESKTOP */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--red-light) 100%);
    color: var(--white);
    padding-top: var(--header-height-desktop);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Melhorias nos botões do Hero - Contraste aprimorado */
.hero-buttons .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 600;
    min-width: 160px;
}

.hero-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    text-shadow: none;
}

.hero-buttons .btn-primary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: var(--transition-slow);
    cursor: pointer;
    animation: fadeInUp 1s ease 0.6s both;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.category-card h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.category-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Seções seguintes */
.about {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 80px 0;
}

/* Seções */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--tertiary-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    color: var(--black);
    line-height: 1.7;
}

.company-info {
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    color: var(--black);
    display: block;
    margin-bottom: 0.25rem;
}

.info-item span {
    color: var(--tertiary-color);
    font-size: 0.95rem;
}

.about-values {
    display: grid;
    gap: 1.5rem;
}

.value-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--black);
    line-height: 1.6;
}

/* Produtos */
.products {
    padding: 80px 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-category {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-icon-large {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.product-category:hover .category-icon-large {
    transform: scale(1.1);
    background: var(--red-light);
}

.category-icon-large i {
    font-size: 2rem;
    color: var(--white);
}

.category-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-header p {
    color: var(--tertiary-color);
    line-height: 1.6;
}

.product-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.product-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.product-item i {
    color: var(--primary-color);
    transition: var(--transition);
}

.product-item:hover i {
    color: var(--white);
}

/* Contato - Layout Reorganizado */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact-form-section {
    margin-bottom: 4rem;
}

.contact-form-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.contact-content {
    display: block;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    background: var(--red-light);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-details p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--black);
}

.contact-details i {
    color: var(--primary-color);
}

/* Formulário */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    transition: var(--transition);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(134, 13, 10, 0.1);
}

.form-group select {
    cursor: pointer;
}

/* Mapa */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border: 1px solid #e9ecef;
}

.map-container h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.directions-btn:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-footer {
    width: 50px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.footer-logo .logo-text h3 {
    color: var(--white);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.footer-logo .logo-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-info {
    text-align: right;
    flex: 1;
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.footer-credits {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.dev-credits {
    font-size: 0.8rem;
    opacity: 0.8;
}

.dev-credits a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.dev-credits a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Estados de Loading */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ============================================================================ */
/* RESPONSIVIDADE MOBILE - REVISÃO COMPLETA */
/* ============================================================================ */

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-categories {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .category-card {
        padding: 1.8rem 1.2rem;
    }
}

/* Mobile Large (768px e abaixo) */
@media (max-width: 768px) {
    :root {
        --header-height-mobile: 70px;
    }
    
    /* Header Mobile */
    .header {
        height: var(--header-height-mobile);
        z-index: 9999;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height-mobile);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height-mobile));
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
        z-index: 9998;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 10000;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .contact-info {
        display: none;
    }
    
    .logo-header {
        width: 40px;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
    
    /* Hero Section Mobile - CORRIGIDO */
    .hero {
        position: relative; /* Mudado de fixed para relative */
        top: 0;
        left: 0;
        width: 100%;
        min-height: 100vh;
        z-index: 1;
        padding-top: calc(var(--header-height-mobile) + 2rem);
        padding-bottom: 2rem;
        display: flex;
        align-items: flex-start; /* Mudado para flex-start */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
        align-items: flex-start;
        width: 100%;
        margin-top: 1rem;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-categories {
        order: 2;
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }
    
    /* Cards de Categoria Mobile - CORRIGIDO */
    .hero-categories {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
        width: 100%;
        min-height: auto;
        margin: 0;
    }
    
    .category-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .category-card p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .category-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    /* Seções seguintes - CORRIGIDO */
    .about {
        margin-top: 0; /* Remove margem que estava causando problemas */
        padding-top: 60px;
        position: relative;
        z-index: 2;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .logo-footer {
        width: 40px;
    }
    
    #map {
        height: 300px;
    }
    
    .map-container {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Mobile Medium (480px e abaixo) */
@media (max-width: 480px) {
    .hero {
        padding-top: calc(var(--header-height-mobile) + 1rem);
        padding-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-container {
        gap: 1.5rem;
        padding: 0 15px;
        margin-top: 0.5rem;
    }
    
    .hero-categories {
        max-width: 280px;
        gap: 0.8rem;
    }
    
    .category-card {
        padding: 1.2rem 0.8rem;
        min-height: auto;
    }
    
    .category-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .category-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .category-card p {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .logo-header,
    .logo-footer {
        width: 35px;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .product-items {
        grid-template-columns: 1fr;
    }
}

/* Mobile Small (360px e abaixo) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .hero-categories {
        max-width: 250px;
    }
    
    .category-card {
        padding: 1rem 0.6rem;
    }
    
    .category-icon {
        font-size: 1.5rem;
    }
    
    .category-card h3 {
        font-size: 0.85rem;
    }
    
    .category-card p {
        font-size: 0.7rem;
    }
}

/* Landscape Mobile - Para dispositivos em paisagem */
@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
    .hero {
        padding-top: calc(var(--header-height-mobile) + 1rem);
        min-height: auto;
        height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
        margin-top: 0;
    }
    
    .hero-content {
        order: 1;
        text-align: left;
    }
    
    .hero-categories {
        order: 2;
        grid-template-columns: 1fr;
        max-width: 200px;
        gap: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 120px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .category-card {
        padding: 0.8rem 0.6rem;
        min-height: auto;
    }
    
    .category-icon {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .category-card h3 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .category-card p {
        font-size: 0.65rem;
    }
}

/* Melhorias de Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States para Acessibilidade */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .hero-buttons,
    .btn {
        display: none !important;
    }
    
    .hero {
        position: static;
        height: auto;
        background: var(--white) !important;
        color: var(--black) !important;
        padding: 0;
    }
    
    .about {
        margin-top: 0;
        padding-top: 0;
    }
}

/* Botões RH no Footer */
.footer-hr-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.btn-footer-primary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-footer-primary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-footer-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-footer-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Responsividade dos botões RH */
@media (max-width: 768px) {
    .footer-hr-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .footer-hr-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-hr-buttons .btn {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}

/* ============================================================================ */
/* PÁGINA TRABALHE CONOSCO */
/* ============================================================================ */

/* Hero Section Carreiras */
.careers-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--red-light) 100%);
    color: var(--white);
    padding: 140px 0 80px;
    text-align: center;
}

.careers-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.careers-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    animation: fadeInUp 1s ease;
}

.careers-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.2s both;
}

.careers-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Por que trabalhar conosco */
.why-work-with-us {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.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;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: var(--red-light);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--black);
    line-height: 1.6;
}

/* Seção do Formulário */
.application-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.form-intro {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    height: fit-content;
}

.form-intro h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-intro p {
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-hr-info {
    margin-top: 2rem;
}

.hr-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.hr-contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
}

.hr-contact-item strong {
    color: var(--black);
    display: block;
    margin-bottom: 0.25rem;
}

.hr-contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.hr-contact-item a:hover {
    text-decoration: underline;
}

.hr-contact-item span {
    color: var(--tertiary-color);
}

.microsoft-form-wrapper {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.microsoft-form-wrapper iframe {
    border: none;
    width: 100%;
    min-height: 640px;
}

/* Chamada para Ação - CORRIGIDA */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--red-light) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(134, 13, 10, 0.1);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--white); /* Garantir que seja branco */
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95); /* Melhor contraste */
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* Botão primário - Branco com texto vermelho */
.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Botão secundário - Transparente com borda branca */
.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}


/* Responsividade Trabalhe Conosco */
@media (max-width: 768px) {
    .careers-title {
        font-size: 2.5rem;
    }
    
    .careers-subtitle {
        font-size: 1.1rem;
    }
    
    .careers-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .microsoft-form-wrapper iframe {
        min-height: 500px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .careers-hero {
        padding: 120px 0 60px;
    }
    
    .careers-title {
        font-size: 2rem;
    }
    
    .careers-subtitle {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .form-intro {
        padding: 2rem;
    }
    
    .microsoft-form-wrapper iframe {
        min-height: 450px;
    }
}
