* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e1e2a;
    background: #f8f9fa;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    color: #1e1e2a;
}

.logo-text span {
    color: #f59e0b;
}

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

.main-nav a {
    text-decoration: none;
    color: #1e1e2a;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #f59e0b;
}

.main-nav a.active {
    color: #f59e0b;
    font-weight: 600;
}

.btn-nav-cta {
    background: #f59e0b;
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.btn-nav-cta:hover {
    background: #e67e22;
    color: white !important;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1e1e2a 0%, #2d2d3a 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.highlight {
    color: #f59e0b;
}

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

/* Botões */
.btn-primary {
    background: #f59e0b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #e67e22;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #f59e0b;
    color: #f59e0b;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #f59e0b;
    color: white;
}

/* Seções gerais */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

section h2 span {
    color: #f59e0b;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-destaque {
    border: 2px solid #f59e0b;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 1rem;
}

.card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.card-status {
    margin-bottom: 1rem;
}

.status-ready {
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-breve {
    color: #f59e0b;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-service {
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-link {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
}

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

/* Diferenciais */
.diferenciais {
    background: white;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.diferencial i {
    font-size: 2.5rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.diferencial h3 {
    margin-bottom: 0.5rem;
}

.diferencial p {
    color: #666;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, #f59e0b 0%, #e67e22 100%);
    color: white;
    text-align: center;
}

.cta-final h2 {
    color: white;
}

.cta-final p {
    margin-bottom: 2rem;
}

.btn-grande {
    background: white;
    color: #f59e0b;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: transform 0.3s;
}

.btn-grande:hover {
    transform: scale(1.05);
}

/* ========== PÁGINA DE CONTATO ========== */

/* Cabeçalho da página de contato */
.contato-header {
    background: linear-gradient(135deg, #1e1e2a 0%, #2d2d3a 100%);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.contato-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contato-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Alerta de sucesso */
.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 1rem;
    margin: 20px auto;
    max-width: 1280px;
    text-align: center;
}

/* Seção do formulário de contato */
.contato-form {
    padding: 60px 0;
    background: #f8f9fa;
}

.contato-form .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Formulário */
.form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1e1e2a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.btn-enviar {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.btn-enviar:hover {
    background: #e67e22;
}

/* Informações de contato lateral */
.info-contato {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: fit-content;
}

.info-contato h3 {
    margin-bottom: 1.5rem;
    color: #1e1e2a;
}

.info-contato p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.info-contato i {
    color: #f59e0b;
    font-size: 1.2rem;
    width: 25px;
}

/* ========== PÁGINA DE PRODUTOS ========== */
.produto-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.produto-item:last-child {
    margin-bottom: 0;
}

.badge-ready {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-breve {
    background: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.produto-item h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.produto-item p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* ========== PÁGINA DE PREÇOS (404) ========== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 80px 0;
}

.error-code {
    font-size: 120px;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 20px;
}

.error-page h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.error-page p {
    color: #666;
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-home, .btn-contact {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
}

.btn-home {
    background: #f59e0b;
    color: white;
}

.btn-contact {
    border: 2px solid #f59e0b;
    color: #f59e0b;
}

/* ========== FOOTER ========== */
.footer {
    background: #1e1e2a;
    color: #a0a0a8;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: #a0a0a8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #f59e0b;
}

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

.social-links a {
    color: #a0a0a8;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #f59e0b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.875rem;
}

.footer-bottom a {
    color: #a0a0a8;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #f59e0b;
}

.breve {
    font-size: 0.7rem;
    color: #f59e0b;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .produto-item {
        grid-template-columns: 1fr;
    }
    
    .contato-form .container {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .contato-header h1 {
        font-size: 1.8rem;
    }
    
    .form-wrapper,
    .info-contato {
        padding: 1.5rem;
    }
}