/* Configurações Gerais - Mobile First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body { line-height: 1.6; color: #333; overflow-x: hidden; }
.container { max-width: 1100px; margin: auto; padding: 0 15px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Botões Responsivos */
.btn-primary {
    background: #ff8c00;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    min-width: 140px;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

/* Header com Menu Mobile */
header {
    background: #ff8c00;
    color: white;
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { 
    font-size: clamp(1.2rem, 4vw, 1.5rem); 
    font-weight: bold; 
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links { 
    display: flex; 
    gap: 20px; 
    list-style: none;
}

.nav-links a { 
    font-weight: 500; 
    padding: 8px 0; 
}

.nav-links a:hover { color: #222; }

.menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Responsivo */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/bg-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px 0;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 { 
    font-size: clamp(2rem, 6vw, 3.5rem); 
    margin-bottom: 15px; 
    line-height: 1.2;
}

.hero p { 
    font-size: clamp(1.1rem, 3vw, 1.3rem); 
    margin-bottom: 25px; 
}

/* Seções Gerais */
.section-title { 
    text-align: center; 
    margin: 40px 0; 
    font-size: clamp(1.8rem, 5vw, 2.5rem); 
    position: relative; 
}

.section-title::after { 
    content: ''; 
    width: 50px; 
    height: 3px; 
    background: #ff8c00; 
    position: absolute; 
    bottom: -15px; 
    left: 50%; 
    transform: translateX(-50%); 
}

/* Services Grid Perfeito */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.service-card {
    background: #ffb84d;
    padding: 35px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: #ff8c00;
    color: white;
}

.service-card.dark { 
    background: #222; 
    color: white; 
}

.service-card i { 
    font-size: clamp(2rem, 8vw, 2.8rem); 
    margin-bottom: 15px; 
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* About Flexível */
.about { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    align-items: center; 
    gap: 50px; 
    padding: 80px 20px; 
}

.about-content h3 {
    font-size: 1.8rem;
    margin: 10px 0;
    color: #ff8c00;
}

.about-content p {
    margin-bottom: 1.2rem;
}

/* CTA Responsivo */
.cta { 
    background: linear-gradient(135deg, #222, #333);
    background: url('img/shop-bg.png'); 
    color: white; 
    padding: 80px 20px; 
    text-align: center; 
}

.cta h2 { 
    font-size: clamp(1.8rem, 5vw, 2.5rem); 
    margin-bottom: 20px; 
}

.cta h2 span { color: #ff8c00; }

.cta-buttons { 
    margin-top: 30px; 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap;
}

/* Contact Grid */
.contact { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
    padding: 80px 20px; 
}

.contact-form h2 {
    margin-bottom: 25px;
    color: #333;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea { 
    width: 100%; 
    padding: 15px; 
    margin-bottom: 20px; 
    border: 2px solid #eee; 
    border-radius: 8px; 
    font-size: 16px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff8c00;
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer Responsivo */
footer { 
    background: #1a1a1a; 
    color: #ccc; 
    padding: 60px 20px 30px; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
    margin-bottom: 30px;
}

.footer-col h4 { 
    color: white; 
    margin-bottom: 20px; 
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: #ff8c00;
}

.footer-col p {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a { 
    font-size: 1.4rem; 
    padding: 10px;
    background: #333;
    border-radius: 50%;
    transition: all 0.3s;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    background: #ff8c00;
    color: #ccc; 
    transform: translateY(-3px);
}

.copyright { 
    text-align: center; 
    margin-top: 40px; 
    font-size: 0.9rem; 
    border-top: 1px solid #444; 
    padding-top: 25px; 
    color: #aaa;
}

/* RESPONSIVIDADE PERFEITA */

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-icon { display: block; }
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ff8c00;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(20px);
        animation: slideDown 0.3s forwards;
    }
    
    @keyframes slideDown {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Mobile Geral */
@media (max-width: 1024px) {
    .about, .contact { 
        grid-template-columns: 1fr; 
        gap: 40px; 
        text-align: center;
    }
    
    .about-image img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 10px; }
    
    .hero {
        min-height: 70vh;
        background-attachment: scroll;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 15px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .section-title {
        margin: 30px 0;
    }
    
    .contact-map iframe {
        height: 250px;
    }

    .contact-form h2 {
        margin-top: 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
