/* ===== Rodapé moderno e limpo ===== */
.footer {
    background: #2d2d2d;
    color: #fff;
    padding: 50px 0 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
}

.footer-section {
    flex: 0 0 auto;
    min-width: 150px;
    max-width: 220px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #fff;
    font-weight: 600;
}

.footer-section p {
    margin: 0 0 12px 0;
    color: #d0d0d0;
    font-size: 0.95em;
    line-height: 1.6;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-section a {
    color: #d0d0d0;
    text-decoration: none !important;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-decoration: none !important;
}

/* Ícones sociais */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #fff;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* Lista de links no footer */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--primary-color);
}

/* Copyright */
.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #888;
    font-size: 0.85em;
}

.footer-bottom p:first-child {
    text-align: left;
}

.made-by {
    font-size: 0.85em !important;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.made-by a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.made-by a:hover {
    opacity: 0.8;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .made-by {
        margin-left: 0;
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        padding: 40px 0 0 0;
    }
}
/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4CAF50;
    --secondary-color: #FFAB40;
    --text-color: #333;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

html {
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.btn:hover {
    background-color: #ff9800;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Menu - Header que só aparece após scroll */
.menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s, opacity 0.3s;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
}

.menu-wrapper.scrolled {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    opacity: 1;
    pointer-events: auto;
}

.menu-wrapper .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-trigger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .menu-trigger {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        transition: left 0.3s;
        box-shadow: var(--shadow);
    }
    
    .main-nav.open {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
    }
}

/* Hero Section - Ocupa toda a viewport */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero-slide.active {
    display: block;
}

/* Overlay escuro sobre o slideshow */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Animação de fade para Hero */
.fade-hero {
    animation-name: fadeHero;
    animation-duration: 1.5s;
}

@keyframes fadeHero {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Botões de navegação do Hero */
.hero-prev, .hero-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 28px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    text-decoration: none;
    z-index: 3;
}

.hero-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.hero-prev:hover, .hero-next:hover {
    background-color: rgba(76, 175, 80, 0.8);
}

/* Indicadores do Hero */
.hero-dots {
    text-align: center;
    position: absolute;
    bottom: 30px;
    width: 100%;
    z-index: 3;
}

.hero-dot {
    cursor: pointer;
    height: 14px;
    width: 14px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.hero-dot.active, .hero-dot:hover {
    background-color: var(--primary-color);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 3;
    padding: 0 2rem;
}

.hero h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
    margin-top: 0;
}

.about h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.about p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Produtos Section */
.produtos {
    padding: 5rem 0;
    background: var(--bg-light);
}

.produtos h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.produtos-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.produto-categoria {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.produto-categoria:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.produto-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.produto-categoria h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.produto-categoria p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--white);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Cards de Cabazes */
.cabazes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cabaz-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.cabaz-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.cabaz-image {
    width: 100%;
    height: 250px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: var(--white);
}

.cabaz-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
    display: block;
}

.cabaz-card:hover .cabaz-image img {
    transform: scale(1.05);
}

.cabaz-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    text-align: center;
}

.cabaz-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.cabaz-content p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cabaz-buttons {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-color);
    flex: 1;
    min-width: 90px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    text-align: center;
    text-decoration: none;
}

.btn-primary:hover {
    background: #45a049;
}

.btn-secondary {
    background: var(--secondary-color);
    flex: 1;
    min-width: 90px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    text-align: center;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #ff9800;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-right: 30px;
}

.modal-content ul {
    list-style: none;
    padding: 0;
}

.modal-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-content li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
    .cabazes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cabaz-card {
        flex-direction: column;
    }
    
    .cabaz-image {
        width: 100%;
        height: 200px;
    }
    
    .cabaz-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta .btn {
    background: var(--white);
    color: var(--primary-color);
}

.cta .btn:hover {
    background: var(--bg-light);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--white);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.detail p {
    margin: 0;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.contact-form button {
    align-self: flex-start;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-prev, .hero-next {
        font-size: 20px;
        padding: 12px;
    }
    
    .hero-dot {
        height: 10px;
        width: 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Cookie Banner ===== */
.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: flex-end;
    justify-content: center;
    z-index: 9999;
}
.cookie-overlay[aria-hidden="false"] {
    display: flex;
}
.cookie-banner {
    background: #ffffff;
    max-width: 1100px;
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem 1rem;
    padding: 1rem 1.2rem;
    border-radius: 10px 10px 6px 6px;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.cookie-text p {
    margin: 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.4;
}
.cookie-actions {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}
.cookie-manage {
    color: var(--text-color);
    text-decoration: underline;
    margin-left: 0.5rem;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }
    .cookie-actions {
        justify-content: flex-end;
        width: 100%;
        gap: 0.5rem;
    }
}
