@import url('global.css');

/* --- FUNDO ESPECÍFICO DA HOME --- */
body { 
    background-color: var(--bg-body); 
    background-image: radial-gradient(#e0e0e0 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    overflow-x: hidden; 
}

.text-highlight { color: var(--vermelho); font-weight: 800; }

/* --- NAVBAR --- */
.navbar { 
    background: var(--vermelho); 
    padding: 10px 0; 
    position: sticky; top: 0; z-index: 1000; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.nav-container { 
    max-width: 1200px; margin: 0 auto; padding: 0 20px; 
    display: flex; justify-content: space-between; align-items: center; 
}

.logo-img {
    height: 65px; width: 65px; object-fit: cover;
    border-radius: 50%; border: 3px solid white;
    background: #fff; transition: 0.3s;
}
.logo-img:hover { transform: scale(1.1) rotate(-5deg); border-color: var(--amarelo); }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { 
    color: rgba(255,255,255,0.95); font-weight: 700; font-size: 0.9rem; 
    text-decoration: none; text-transform: uppercase; transition: 0.3s; 
    position: relative;
}
.nav-links a:hover { color: var(--amarelo); }

.btn-nav-top { 
    background: var(--amarelo); color: var(--vermelho) !important; 
    padding: 12px 30px; border-radius: 50px; font-weight: 800 !important; 
    box-shadow: 0 4px 0px #C79100; 
    text-decoration: none; transform: translateY(0); transition: 0.2s;
    font-size: 0.9rem;
}
.btn-nav-top:hover { filter: brightness(110%); transform: translateY(-2px); box-shadow: 0 6px 0px #C79100; }
.btn-nav-top:active { transform: translateY(4px); box-shadow: 0 0 0 #C79100; }

/* --- HERO --- */
.hero-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--vermelho) 0%, #880E4F 100%);
    padding-top: 40px; padding-bottom: 120px; 
    color: white; overflow: visible; 
    display: flex; align-items: center; min-height: 600px; 
}
.hero-wrapper::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('../img/banner.jpg'); 
    opacity: 0.1; background-size: cover; background-attachment: fixed;
}

.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    position: relative; z-index: 10; align-items: center;
}

.hero-text-col { text-align: left; }

.big-title {
    font-family: 'Anton', sans-serif; 
    text-transform: uppercase;
    text-shadow: 4px 4px 0px rgba(0,0,0,0.2);
    margin-bottom: 25px; transform: rotate(-2deg); 
    display: flex; flex-direction: column; align-items: flex-start;
}
.big-title .small-text { font-size: 2.5rem; color: #fff; line-height: 1; margin-bottom: 5px; }
.big-title .white-text { font-size: 5.5rem; color: #fff; line-height: 0.9; }
.big-title .yellow-text { font-size: 5.5rem; color: var(--amarelo); line-height: 0.9; }

.hero-desc { font-size: 1.1rem; opacity: 0.95; margin-bottom: 40px; max-width: 450px; font-weight: 600; }
.hero-img-col { position: relative; display: flex; justify-content: center; }

.giant-coxinha {
    width: 100%; max-width: 580px;
    animation: flutuar 3.5s ease-in-out infinite;
    filter: drop-shadow(0 25px 35px rgba(0,0,0,0.3));
    transform: rotate(5deg);
}
@keyframes flutuar {
    0% { transform: translateY(0px) rotate(5deg); }
    50% { transform: translateY(-25px) rotate(7deg); }
    100% { transform: translateY(0px) rotate(5deg); }
}

.custom-shape-divider-bottom { position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 5; }
.custom-shape-divider-bottom svg { position: relative; display: block; width: calc(100% + 1.3px); height: 120px; }
.custom-shape-divider-bottom .shape-fill { fill: var(--bg-body); }

@media(max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text-col { display: flex; flex-direction: column; align-items: center; }
    .big-title { align-items: center; transform: rotate(0deg); }
    .big-title .small-text { font-size: 1.8rem; }
    .big-title .white-text, .big-title .yellow-text { font-size: 3.8rem; }
    .giant-coxinha { max-width: 320px; margin-top: -20px; margin-bottom: 40px; }
    .nav-links { display: none; }
    .hero-wrapper { padding-bottom: 150px; }
}

/* --- VANTAGENS --- */
.vantagens-section { margin-top: -90px; position: relative; z-index: 20; padding-bottom: 80px; }
.vantagens-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; padding: 0 20px; }

.card-vantagem { 
    background: white; width: 320px; padding: 40px 30px; 
    border-radius: 25px; text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    position: relative; overflow: hidden;
    border-bottom: 6px solid var(--amarelo); cursor: default;
}
.card-vantagem:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(227, 6, 19, 0.15); border-bottom-color: var(--vermelho); }
.icon-circle { 
    width: 80px; height: 80px; background: #FFF8E1; color: #FFA000;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px auto; font-size: 2.5rem; 
    box-shadow: inset 0 0 20px rgba(255, 193, 7, 0.2); transition: all 0.4s ease;
}
.card-vantagem:hover .icon-circle { background: var(--vermelho); color: white; transform: scale(1.1) rotate(10deg); box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3); }
.card-vantagem h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--texto); transition: color 0.3s; font-family: 'Anton', sans-serif; letter-spacing: 0.5px; }
.card-vantagem:hover h3 { color: var(--vermelho); }
.card-vantagem p { font-size: 0.95rem; color: #666; line-height: 1.5; }

/* --- TÍTULOS --- */
.section-pad { padding: 80px 20px; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h4 { color: var(--vermelho); font-size: 1rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 15px; font-weight: 800; }
.section-title h2 { 
    font-size: 3.2rem; color: var(--vermelho); 
    text-shadow: 2px 2px 0px rgba(0,0,0,0.05); line-height: 1.2; 
}

.grid-produtos { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; max-width: 1100px; margin: 0 auto; }
.card-produto { background: white; border-radius: 25px; overflow: hidden; box-shadow: var(--shadow-suave); transition: 0.3s; border: 1px solid rgba(0,0,0,0.03); display: flex; flex-direction: column; }
.card-produto:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.card-img-top { width: 100%; height: 240px; object-fit: cover; transition: 0.5s; background: #eee; }
.card-produto:hover .card-img-top { transform: scale(1.05); }
.card-body { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 10px; font-size: 1.5rem; color: var(--texto); font-family: 'Anton', sans-serif; letter-spacing: 0.5px; }
.card-body p { color: #777; margin-bottom: 20px; flex: 1; line-height: 1.5; }
.btn-link-red { color: var(--vermelho); font-weight: 900; text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.5px; text-decoration: none; display: flex; align-items: center; gap: 5px; align-self: flex-start; padding: 10px 0; }
.btn-link-red:hover { gap: 10px; color: var(--vermelho-escuro); }

/* --- SOBRE (BRANCO LIMPO) --- */
.bg-white { background: white; position: relative; z-index: 5; }
.split-flex { display: flex; align-items: center; gap: 80px; max-width: 1100px; margin: 0 auto; }
.split-img { flex: 1; position: relative; }
.split-img img { width: 100%; border-radius: 30px; box-shadow: 25px 25px 0 var(--amarelo); transition: 0.3s; }
.split-img:hover img { transform: translate(5px, 5px); box-shadow: 15px 15px 0 var(--amarelo); }
.split-text { flex: 1; }
.split-text h2 { font-size: 3.5rem; margin-bottom: 25px; line-height: 1.2; color: var(--texto); }
.split-text p { margin-bottom: 25px; font-size: 1.1rem; opacity: 0.8; line-height: 1.7; }

/* --- DEPOIMENTOS --- */
.card-review { background: white; padding: 40px; border-radius: 25px; box-shadow: var(--shadow-suave); text-align: center; position: relative; border: 2px dashed #eee; }
.card-review::before { content: '"'; font-size: 6rem; color: #f0f0f0; position: absolute; top: -20px; left: 20px; font-family: serif; }
.card-review p { font-size: 1.1rem; font-style: italic; color: #555; margin-bottom: 20px; position: relative; z-index: 2; }
.card-review strong { font-size: 1rem; color: var(--texto); display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; }

/* CTA FINAL */
.final-cta { 
    background: var(--vermelho); color: white; text-align: center; padding: 120px 20px; 
    background-image: radial-gradient(circle at center, var(--vermelho) 0%, #880E4F 100%); 
    position: relative; overflow: hidden; 
}
.final-cta::before { content: ''; position: absolute; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; top: -100px; left: -100px; }
.final-cta::after { content: ''; position: absolute; width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%; bottom: -50px; right: -50px; }

/* --- FOOTER --- */
footer { 
    background: #1c1c1c; 
    color: #999; 
    padding: 60px 20px 40px; 
    text-align: center;
    border-top: 6px solid var(--vermelho);
}

.footer-container { 
    max-width: 1000px; margin: 0 auto; 
    display: flex; flex-direction: column; align-items: center; gap: 30px;
}

.footer-logo-img {
    height: 80px; width: 80px; 
    object-fit: cover; border-radius: 50%; 
    border: 3px solid #333; 
    background: #fff; padding: 2px;
}

.footer-links { 
    display: flex; gap: 25px; flex-wrap: wrap; justify-content: center;
}
.footer-links a { 
    color: #ddd; text-decoration: none; font-weight: 700; 
    text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px;
    transition: 0.2s;
}
.footer-links a:hover { color: var(--amarelo); }

.social-icons { display: flex; gap: 20px; margin-top: 10px; justify-content: center; }
.social-svg { 
    width: 28px; height: 28px; 
    fill: #777; 
    transition: 0.3s; cursor: pointer;
}
.social-svg:hover { fill: white; transform: translateY(-3px); }

.copyright-text { margin-top: 40px; font-size: 0.75rem; color: #555; border-top: 1px solid #333; padding-top: 20px; width: 100%; }

/* BOTOES */
.btn-cta { display: inline-block; padding: 20px 45px; border-radius: 50px; font-size: 1.1rem; text-decoration: none; transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.5px; position: relative; }
.btn-primary { 
    background: var(--amarelo); color: var(--vermelho); 
    font-weight: 800; 
    box-shadow: 0 6px 0 #C79100, 0 15px 30px rgba(0,0,0,0.2); 
}
.btn-primary:hover { transform: translateY(-4px); box-shadow: 0 10px 0 #C79100, 0 20px 40px rgba(0,0,0,0.3); }
.btn-primary:active { transform: translateY(6px); box-shadow: 0 0 0 #C79100; }

.btn-secondary { background: rgba(255,255,255,0.15); color: white; border: 2px solid rgba(255,255,255,0.4); font-weight: 700; backdrop-filter: blur(5px); }
.btn-secondary:hover { background: white; color: var(--vermelho); border-color: white; }

/* ZAP */
.btn-whatsapp { background: var(--verde-zap); color: white; font-weight: 800; box-shadow: 0 6px 0 #005c4b, 0 15px 30px rgba(0,0,0,0.2); display: inline-flex; align-items: center; gap: 12px; border: none; padding: 15px 40px; }
.btn-whatsapp:hover { background: #008f6f; transform: translateY(-4px); box-shadow: 0 10px 0 #005c4b, 0 20px 40px rgba(0,0,0,0.3); color: white; }
.btn-whatsapp:active { transform: translateY(6px); box-shadow: 0 0 0 #005c4b; }
.btn-whatsapp .material-icons { font-size: 1.4rem; }