:root {
    --primary: #D35400; 
    --primary-hover: #A04000;
    --dark: #2C1E16; 
    --light: #F9F6F0; 
    --white: #FFFFFF;
    --text: #4A3E3D;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Lora', serif;
    color: var(--dark);
}

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

.mt-4 { margin-top: 2rem; }

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(249, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

header.scrolled {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    padding: 0.5rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
}

.logo span {
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

nav a {
    text-decoration: none;
    color: var(--text);
    margin: 0 1.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

/* Botões */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
}

.btn-outline-light {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid var(--white);
    backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--dark);
}

/* Hero Section com Carrossel */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-carousel .slide.active {
    opacity: 1;
}

/* Controles do Carrossel */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-control.prev { left: 3%; }
.carousel-control.next { right: 3%; }

.relative-z {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
}

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.15rem;
    color: #e0dcd9;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Status Dinâmico de Aberto/Fechado */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    color: var(--white);
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
}

.is-open .status-indicator {
    background-color: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
    animation: pulse 2s infinite;
}

.is-closed .status-indicator {
    background-color: #e74c3c;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

/* Produtos */
.section-padding { padding: 6rem 0; }
.bg-light { background-color: var(--white); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.product-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
    position: relative;
    background: var(--light);
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.product-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.text-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.text-link:hover { gap: 0.8rem; }

/* Prova Social / Depoimentos */
.bg-dark { background-color: var(--dark); color: var(--light); }
.text-light { color: var(--white); }
.subtitle { color: #a19a96; margin-bottom: 3rem; }

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 200px;
}

.testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateX(20px);
}

.testimonial.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0);
}

.quote {
    font-size: 1.4rem;
    font-style: italic;
    font-family: 'Lora', serif;
    margin-bottom: 1.5rem;
}

.author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.control-dot.active { background-color: var(--primary); }

/* Localização */
.split-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.location-info { flex: 1; }
.location-map { 
    flex: 1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-block p { color: #666; }

/* Floating WhatsApp */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* Footer */
footer {
    background-color: #1a120d;
    color: rgba(255,255,255,0.5);
    padding: 2rem 0;
    text-align: center;
}

.footer-content .logo {
    color: var(--white);
    margin-bottom: 0.5rem;
}

/* Animações JS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@media (max-width: 900px) {
    .split-layout { flex-direction: column; }
    .location-map { width: 100%; }
}

@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 1rem; }
    nav a { margin: 0 0.5rem; }
    .hero { text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .floating-btn span { display: none; }
    .floating-btn { padding: 1rem; border-radius: 50%; right: 20px; bottom: 20px; }
    .carousel-control { display: none; } /* Oculta as setas do carrossel no mobile para não poluir, mantendo só o automático */
}