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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFEF7;
}

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

/* Header e Navegação */
.navbar {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    color: #8B4513;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 2px;
}

.logo .tagline {
    color: #B8860B;
    font-size: 0.9rem;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #8B4513;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
}

.nav-menu a:hover {
    color: #FFFFFF;
    background-color: rgba(139, 69, 19, 0.2);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #8B4513;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFF8DC, #FFFFE0);
    display: flex;
    align-items: center;
    min-height: 70vh;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h2 {
    font-size: 3rem;
    color: #B8860B;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #B8860B;
    border: 2px solid #FFD700;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #8B4513;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    text-align: center;
}

/* Services Preview */
.services-preview {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #B8860B;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, #FFF8DC, #FFFFE0);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #FFD700;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.service-card h3 {
    color: #B8860B;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Preview */
.about-preview {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFF8DC, #FFFFE0);
}

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

.about-text {
    flex: 2;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #B8860B;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.company-info {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
    margin-top: 25px;
}

.company-info p {
    margin-bottom: 10px;
    color: #8B4513;
}

.about-image {
    flex: 1;
    text-align: center;
}

/* Contact Preview */
.contact-preview {
    padding: 80px 20px;
    background-color: #FFFFFF;
    text-align: center;
}

.contact-preview h2 {
    font-size: 2.5rem;
    color: #B8860B;
    margin-bottom: 20px;
}

.contact-preview p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    background: linear-gradient(135deg, #FFF8DC, #FFFFE0);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #FFD700;
    min-width: 200px;
}

.contact-item h4 {
    color: #B8860B;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: #FFFFFF;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3, .footer-section h4 {
    color: #FFD700;
    margin-bottom: 15px;
}

.footer-section p, .footer-section li {
    color: #F5DEB3;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #F5DEB3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #A0522D;
    color: #F5DEB3;
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .services-preview h2,
    .about-text h2,
    .contact-preview h2 {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}

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

.service-card,
.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Formulários */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #B8860B;
    font-weight: bold;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #FFD700;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFA500;
    box-shadow: 0 0 5px rgba(255, 165, 0, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Páginas internas */
.page-header {
    margin-top: 80px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #FFF8DC, #FFFFE0);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #B8860B;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.page-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    color: #B8860B;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.content-section h3 {
    color: #8B4513;
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.content-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-section ul {
    color: #666;
    line-height: 1.7;
    margin-left: 20px;
    margin-bottom: 15px;
}

.highlight-box {
    background: linear-gradient(135deg, #FFF8DC, #FFFFE0);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
    margin: 25px 0;
}

.highlight-box h4 {
    color: #B8860B;
    margin-bottom: 10px;
}

.highlight-box p {
    margin: 0;
    color: #666;
}