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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}

/* Header Section */
.header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), 
                url('assets/img/bg.png') center/cover,
                linear-gradient(135deg, #2c2c2c, #000);
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    background-attachment: fixed;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo-image {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
}

.tagline {
    color: white;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 600px;
}

.tagline strong {
    font-weight: 700;
}

/* Sobre a Empresa Section */
.about-section {
    background-color: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.about-section p {
    font-size: 18px;
    color: #000;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.8;
}

/* Missão e Visão Section */
.mission-vision {
    display: flex;
    min-height: 400px;
}

.mission-column {
    flex: 1;
    background-color: #f5f5f5;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision-column {
    flex: 1;
    background-color: #000;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-column h3,
.vision-column h3 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.mission-column h3 {
    color: #000;
}

.vision-column h3 {
    color: white;
}

.mission-column p,
.vision-column p {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.mission-column p {
    color: #000;
}

.vision-column p {
    color: white;
}

/* Valores Section */
.values-section {
    background-color: #2c2c2c;
    padding: 80px 20px;
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.values-list {
    list-style: none;
}

.values-list li {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.values-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

.values-list strong {
    font-weight: 600;
}

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

.turbo-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.turbo-image:hover {
    transform: scale(1.02);
}

/* Certificado de Garantia Section */
.warranty-section {
    background-color: #f5f5f5;
    padding: 80px 20px;
}

.warranty-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    text-align: left;
    letter-spacing: -0.01em;
}

.warranty-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.form-group p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.form-select,
.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    background-color: white;
    transition: border-color 0.3s ease;
}

.form-select:focus,
.form-input:focus {
    outline: none;
    border-color: #333;
}

.form-input:disabled {
    background-color: #e9ecef;
    cursor: not-allowed;
    color: #666;
}

.emit-button {
    background-color: #2c2c2c;
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.emit-button:hover {
    background-color: #000;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 40px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.footer-logo .logo-image {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 16px;
}

.contact-icon {
    font-size: 18px;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .tagline {
        font-size: 20px;
    }
    
    .mission-vision {
        flex-direction: column;
    }
    
    .values-content {
        flex-direction: column;
        text-align: center;
    }
    
    .values-text h2 {
        font-size: 36px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .about-section h2 {
        font-size: 36px;
    }
    
    .warranty-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .header {
        min-height: 300px;
        padding: 20px;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .footer-logo .logo-image {
        height: 45px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .about-section,
    .values-section,
    .warranty-section {
        padding: 40px 20px;
    }
    
    .mission-column,
    .vision-column {
        padding: 40px 20px;
    }
}
