/* ==========================================================================
   VARIÁVEIS
   ========================================================================== */
:root {
    --bg-light: #FFFFFF;
    --bg-alt: #F8F9FA;
    --text-dark: #1A1A1A;      
    --text-muted: #666666;
    --primary: #FF7A00;         
    --primary-hover: #E26800;
    --primary-light: #FFF0E0;
    --accent-green: #4CAF50;    
    --border-color: #EAEAEA;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* COMPENSAÇÃO DO MENU FIXO */
html {
    scroll-padding-top: 130px;
}

body { 
    background-color: var(--bg-light); 
    color: var(--text-dark); 
    font-family: var(--font-main); 
    line-height: 1.6; 
}

.container { 
    width: 100%; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 1.5rem; 
}

/* ==========================================================================
   TOPBAR E NAVBAR (MENU)
   ========================================================================== */
.topbar { 
    background-color: var(--text-dark); 
    color: #FFFFFF; 
    font-size: 0.85rem; 
    padding: 0.5rem 0; 
}
.topbar-flex { 
    display: flex; 
    justify-content: space-between; 
}
.navbar { 
    position: sticky; 
    top: 0; 
    background-color: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid var(--border-color); 
    z-index: 1000; 
    padding: 0.8rem 0; 
}
.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.nav-logo-img { 
    height: 90px; 
    width: auto; 
    display: block; 
}
.nav-menu { 
    display: flex; 
    align-items: center; 
    gap: 1.5rem; 
}
.nav-link { 
    color: var(--text-dark); 
    text-decoration: none; 
    font-weight: 600; 
    transition: var(--transition); 
}
.nav-link:hover { 
    color: var(--primary); 
}

/* ==========================================================================
   BOTÕES E ANIMAÇÕES
   ========================================================================== */
.btn-nav { 
    background-color: #25D366; 
    color: #FFF; 
    padding: 0.6rem 1.2rem; 
    border-radius: 8px; 
}
.btn-nav:hover { 
    background-color: #128C7E; 
    color: #FFF; 
}
.pulse-btn { 
    animation: pulse 2s infinite; 
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn { 
    text-decoration: none; 
    padding: 0.8rem 2rem; 
    border-radius: 8px; 
    font-weight: 700; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    transition: var(--transition); 
}
.btn-primary { 
    background-color: var(--primary); 
    color: #FFFFFF; 
}
.btn-primary:hover { 
    background-color: var(--primary-hover); 
    transform: translateY(-2px); 
}
.btn-secondary { 
    background-color: #25D366; 
    color: #FFFFFF; 
}
.btn-secondary:hover { 
    background-color: #128C7E; 
    transform: translateY(-2px); 
}
.btn-white { 
    background-color: white; 
    color: var(--primary); 
    padding: 0.8rem 2rem; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 700; 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    transition: var(--transition); 
}
.btn-white:hover { 
    background-color: var(--bg-alt); 
}

/* ==========================================================================
   HERO SECTION E EFEITOS
   ========================================================================== */
.hero { 
    padding: 5rem 0; 
    background: radial-gradient(circle at 80% 20%, var(--primary-light) 0%, var(--bg-light) 50%); 
}
.hero-grid { 
    display: grid; 
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 3rem; 
    align-items: center; 
}
.badge { 
    background-color: #FFFFFF; 
    color: var(--primary); 
    border: 1px solid var(--primary); 
    padding: 0.4rem 1rem; 
    border-radius: 50px; 
    font-size: 0.85rem; 
    font-weight: 700; 
    display: inline-block; 
    margin-bottom: 1rem; 
}
.hero-text h1 { 
    font-size: 3.2rem; 
    font-weight: 800; 
    line-height: 1.2; 
    margin-bottom: 1.5rem; 
}

/* Texto Abóbora Tech Animado */
.gradient-text {
    background: linear-gradient(90deg, var(--primary), #FFB800, #FF5100, var(--primary));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 4s ease infinite;
    display: inline-block;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.floating-logo { 
    width: 100%; 
    max-width: 500px; 
    border-radius: 12px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
    animation: float 5s ease-in-out infinite; 
}

@keyframes float { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-10px); } 
}

.hero-buttons { 
    display: flex; 
    gap: 1rem; 
    margin-top: 1.5rem; 
}

/* ==========================================================================
   TÍTULOS E SEÇÕES GERAIS
   ========================================================================== */
.section-title { 
    position: relative; 
    display: inline-block; 
    margin-bottom: 1rem; 
    font-size: 2.2rem; 
    font-weight: 800; 
}
.section-title::after { 
    content: ''; 
    position: absolute; 
    left: 0; 
    bottom: -5px; 
    width: 50px; 
    height: 4px; 
    background-color: var(--primary); 
    border-radius: 2px; 
    transition: width 0.3s; 
}
.section-title:hover::after { 
    width: 100%; 
}
.shop-section, .services-section, .about-section, .gallery-section, .clients-section { 
    padding: 5rem 0; 
}
.shop-section, .gallery-section { 
    background-color: var(--bg-alt); 
}
.section-header { 
    text-align: center; 
    margin-bottom: 3.5rem; 
}
.section-header .section-title::after { 
    left: 50%; 
    transform: translateX(-50%); 
}

/* GRIDS E CARDS COMUNS */
.products-grid, .services-grid, .gallery-grid, .clients-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem; 
}
.product-card, .service-box { 
    background-color: #FFFFFF; 
    border: 1px solid var(--border-color); 
    border-radius: 16px; 
    padding: 2.5rem 2rem; 
    position: relative; 
    transition: var(--transition); 
    box-shadow: var(--shadow); 
}
.product-card:hover, .service-box:hover { 
    border-color: var(--primary); 
    transform: translateY(-5px); 
}
.product-icon, .service-icon { 
    font-size: 2.5rem; 
    color: var(--primary); 
    margin-bottom: 1.5rem; 
    display: inline-block; 
}
.product-card:hover .hover-bounce { 
    animation: bounce 0.5s ease; 
}

@keyframes bounce { 
    0%, 100% { transform: translateY(0); } 
    50% { transform: translateY(-10px); } 
}

.badge-discount { 
    position: absolute; 
    top: 1rem; 
    right: 1rem; 
    background-color: var(--primary); 
    color: white; 
    font-size: 0.8rem; 
    font-weight: 700; 
    padding: 0.2rem 0.6rem; 
    border-radius: 4px; 
}

/* ==========================================================================
   PÁGINAS ESPECÍFICAS
   ========================================================================== */

/* Sobre Nós */
.about-grid { 
    display: grid; 
    grid-template-columns: 0.8fr 1.2fr; 
    gap: 4rem; 
    align-items: center; 
}
.about-logo-img { 
    width: 100%; 
    border-radius: 16px; 
    box-shadow: var(--shadow); 
}

/* Galeria de Fotos */
.photo-box { 
    background-color: #FFFFFF; 
    border-radius: 12px; 
    padding: 4rem 2rem; 
    text-align: center; 
    border: 1px solid var(--border-color); 
    box-shadow: var(--shadow); 
}
.photo-icon { 
    font-size: 3rem; 
    color: var(--text-muted); 
    margin-bottom: 1rem; 
    opacity: 0.5; 
}

/* Clientes / Depoimentos */
.client-card { 
    background-color: var(--bg-alt); 
    padding: 2rem; 
    border-radius: 12px; 
    border-left: 4px solid var(--primary); 
}
.stars { 
    color: #FFB800; 
    margin-bottom: 1rem; 
}
.client-card p { 
    font-style: italic; 
    color: var(--text-muted); 
    margin-bottom: 1rem; 
}
.client-card h5 { 
    font-weight: 700; 
    font-size: 1rem; 
}

/* Banner Intermediário */
.middle-banner { 
    background-color: var(--primary); 
    color: white; 
    padding: 3rem 0; 
}
.banner-flex { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    gap: 2rem; 
}
.banner-mini-logo { 
    height: 70px; 
    border-radius: 8px; 
    background: white; 
    padding: 2px; 
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE)
   ========================================================================== */
@media (max-width: 768px) {
    .hero-grid, .about-grid, .banner-flex { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .hero-buttons { 
        justify-content: center; 
    }
    .banner-flex { 
        flex-direction: column; 
    }
    .nav-menu { 
        display: none; 
    }
}
/* ==========================================================================
   TOPBAR REDES SOCIAIS E NOVO CONTATO
   ========================================================================== */
.topbar-social { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
}
.topbar-social a { 
    color: #FFFFFF; 
    text-decoration: none; 
    font-weight: 600; 
    transition: var(--transition); 
}
.topbar-social a:hover { 
    color: var(--primary); 
}
.topbar-divisor { 
    opacity: 0.5; 
}

/* ==========================================================================
   AVALIAÇÕES GOOGLE
   ========================================================================== */
.google-review-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 1.5rem; 
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

/* ==========================================================================
   CONTATO E MAPA INTERATIVO
   ========================================================================== */
.contact-map-section { 
    padding: 5rem 0; 
    background-color: var(--bg-light); 
}
.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
    align-items: stretch; 
}
.contact-info-box { 
    display: flex; 
    flex-direction: column; 
    gap: 2rem; 
    background-color: var(--bg-alt); 
    padding: 3rem; 
    border-radius: 12px; 
    border: 1px solid var(--border-color); 
}
.info-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 1.2rem; 
}
.info-item i { 
    font-size: 2.5rem; 
    color: var(--primary); 
}
.info-item h4 { 
    font-size: 1.2rem; 
    margin-bottom: 0.3rem; 
    color: var(--text-dark); 
}
.info-item p, .info-item a { 
    color: var(--text-muted); 
    font-size: 1rem; 
    text-decoration: none;
    transition: var(--transition);
}
.info-item a:hover { 
    color: var(--primary); 
}
.map-container { 
    width: 100%; 
    min-height: 400px; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: var(--shadow); 
    border: 1px solid var(--border-color);
}

/* Responsividade do Mapa e Topbar */
@media (max-width: 768px) {
    .topbar-flex {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .contact-grid { 
        grid-template-columns: 1fr; 
    }
    .map-container {
        min-height: 300px;
    }
}
/* Ajuste da grade para posts do Instagram */
.gallery-grid-insta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Garante que o embed não ultrapasse o tamanho da coluna */
.insta-post {
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}
/* ==========================================================================
   PÁGINA DE MANUTENÇÃO / CADASTRO
   ========================================================================== */
.maintenance-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-card {
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 12px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.terms-box {
    background-color: #F8F9FA;
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.terms-box p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.6;
}

.custom-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.custom-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.custom-form input[type="text"],
.custom-form select,
.custom-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #CCCCCC;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(255, 122, 0, 0.3);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #F8F9FA;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #EEEEEE;
}

.radio-group label {
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.alert-error {
    background-color: #FFD2D2;
    color: #D8000C;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}