/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d2d2d;
    --secondary-color: #c9b896;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f5f5f0;
    --bg-dark: #2d2d2d;
    --white: #ffffff;
    --red-accent: #d32f2f;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation Inside Hero */
.nav-hero {
    position: relative;
    z-index: 10;
    padding: 2rem 0 3rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 160px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.nav-menu a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.35) 0%, rgba(139, 115, 85, 0.30) 100%),
                url('/Imagens/Banner.jpg') center center / cover no-repeat;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(45, 45, 45, 0.95) 0%, rgba(45, 45, 45, 0.3) 50%, transparent 100%);
    pointer-events: none;
}

.hero > .container {
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 4rem 0;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.4), 0 0 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}

.hero-badge {
    margin-bottom: 2rem;
}

.delivery-badge {
    background: var(--red-accent);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(211,47,47,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Sobre Section */
.sobre {
    background: var(--bg-light);
}

.sobre-text {
    max-width: 900px;
    margin: 0 auto;
}

.sobre-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.sobre-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* História Timeline */
.historia {
    background: var(--white);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--secondary-color);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Produtos Section */
.produtos {
    background: var(--white);
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.produto-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.produto-card.highlight {
    background: var(--primary-color);
    color: var(--white);
}

.produto-card.accent {
    background: #FFB440;
    color: var(--text-dark);
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.produto-card.highlight:hover {
    border-color: var(--accent-color);
}

.produto-card.accent:hover {
    border-color: var(--primary-color);
}

.produto-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.produto-card.highlight .produto-icon {
    background: rgba(255,255,255,0.15);
}

.produto-card.accent .produto-icon {
    background: rgba(45,45,45,0.1);
}

.produto-card svg {
    color: var(--accent-color);
}

.produto-card.highlight svg {
    color: var(--white);
}

.produto-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.produto-subtitle {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    font-weight: 600;
}

.produto-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.produto-card:not(.highlight) h3 {
    color: var(--primary-color);
}

.produto-card:not(.highlight) .produto-description {
    color: var(--text-light);
}

.produto-card.accent h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.produto-card.accent .produto-subtitle {
    color: var(--text-dark);
    opacity: 0.85;
}

.produto-card.accent .produto-description {
    color: var(--text-dark);
    opacity: 0.9;
}

.produtos-footer {
    text-align: center;
    margin-top: 3rem;
}

.produtos-footer p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

/* Diferenciais Section */
.diferenciais {
    background: var(--bg-light);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.diferencial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.diferencial-card:hover::before {
    transform: scaleY(1);
}

.diferencial-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.diferencial-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.diferencial-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.diferencial-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.diferenciais-footer {
    text-align: center;
    margin-top: 3rem;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Contato Section */
.contato {
    background: var(--primary-color);
    color: var(--white);
}

.contato .section-title,
.contato .section-subtitle {
    color: var(--white);
}

.contato-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contato-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.contato-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-icon.whatsapp {
    background: #25D366;
}

.contato-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.contato-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contato-details a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.contato-details a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.contato-cta {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.delivery-highlight {
    text-align: center;
    margin-bottom: 2rem;
}

.delivery-highlight h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.delivery-highlight p {
    font-size: 1.1rem;
    color: var(--white);
}

.produtos-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.produto-tag {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.produto-tag:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.footer-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Avaliações Section */
.avaliacoes {
    background: var(--bg-light);
}

.avaliacoes-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.avaliacao-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.avaliacao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.estrelas {
    color: #FFA500;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.avaliacao-texto {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    flex-grow: 1;
}

.avaliacao-autor {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:hover svg {
    stroke: var(--white);
}

.carousel-btn svg {
    stroke: var(--primary-color);
    transition: stroke 0.3s ease;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: var(--accent-color);
    width: 40px;
    border-radius: 6px;
}

.indicator:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(45, 45, 45, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        padding: 2rem 0;
        height: 100vh;
        justify-content: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.3rem;
        padding: 1rem 0;
    }

    .hero {
        min-height: 90vh;
        background-position: center center;
    }

    .nav-hero {
        padding: 1.5rem 0 2rem;
    }

    .hero-content {
        padding: 2rem 0 4rem;
    }

    .hero::before {
        width: 100%;
        background: linear-gradient(180deg, rgba(45, 45, 45, 0.85) 0%, rgba(45, 45, 45, 0.75) 100%);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
        transform: translateX(0);
    }

    .timeline-content {
        width: calc(100% - 100px);
        margin-left: auto !important;
        margin-right: 0 !important;
    }

    .produtos-grid,
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .contato-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }

    .logo-img {
        height: 120px;
    }

    .carousel-slide {
        grid-template-columns: 1fr;
    }

    .avaliacoes-carousel {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .delivery-badge {
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .highlight-text {
        font-size: 1.2rem;
    }

    .delivery-highlight h3 {
        font-size: 2rem;
    }

    .avaliacoes-carousel {
        padding: 0 40px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Scroll Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Mobile adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-icon {
        width: 35px;
        height: 35px;
    }
}