@import url('https://fonts.googleapis.com/css2?family=Chicle&family=Honk&display=swap');


/* Global Styles */
:root {
    --primary-color: #8B5A2B; /* Madeira escura */
    --secondary-color: #D2B48C; /* Madeira clara */
    --accent-color: #A0522D; /* Madeira média */
    --light-color: #F5F5DC; /* Bege claro */
    --dark-color: #3E2723; /* Marrom escuro */
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --black: #000;
    --border-radius: 12px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: space-between;
}

ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

img {
    max-width: 100%;
    display: block;
}

.botao-centro {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    position: relative;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 0.5rem auto;
    border-radius: 2px;
}

.logo {
    width: 200px;
}

/* Container Layout */
.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sidebar-nav ul {
    margin-top: 2rem;
}

.sidebar-nav li {
    margin-bottom: 1rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.sidebar-nav a:hover, .sidebar-nav a.active {
    background-color: var(--accent-color);
    color: var(--white);
}

.sidebar-nav img {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    filter: brightness(0) invert(1);
}

.sidebar-nav span {
    font-size: 1rem;
}

.social-links {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Main Content Styles */
.main-content {
    flex: 1;
    margin-left: 250px;
    background-color: var(--light-color);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 600px;
    background-color: rgba(62, 39, 35, 0.8);
    padding: 2rem;
    border-radius: var(--border-radius);
    color: var(--white);
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.slide.active .slide-content {
    transform: translateX(0);
    opacity: 1;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.prev-slide, .next-slide {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.prev-slide:hover, .next-slide:hover {
    background-color: var(--accent-color);
}

/* Products Section */
.products-section {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* About Section */
.about-section {
    padding: 5rem 2rem;
    background-color: var(--light-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.image-frame {
    height: 500px;
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?ixlib=rb-1.2.1&auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 10px solid var(--accent-color);
    border-radius: var(--border-radius);
    top: -20px;
    left: -20px;
    z-index: -1;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    flex: 1;
    min-width: 150px;
    box-shadow: var(--box-shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 2rem;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139, 90, 43, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    margin: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 1rem;
}

.footer-links h3,
.footer-newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-newsletter p {
    margin-bottom: 1.5rem;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: inherit;
}

.footer-newsletter button {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0 1.2rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .sidebar {
        width: 80px;
        padding: 1rem 0.5rem;
    }
    
    .sidebar-nav span {
        display: none;
    }
    
    .logo {
        max-width: 50px;
    }
    
    .main-content {
        margin-left: 80px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .social-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        flex-direction: row;
        padding: 1rem;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
    }
    
    .logo-container {
        margin-bottom: 0;
    }

    img .logo {
        width: 150px;
    }
    .sidebar ul li{
        margin-bottom: 10px;
    }
    
    .sidebar-nav ul {
        display: flex;
        margin-top: 0;
        flex-direction: column;
    }
    
    .sidebar-nav li {
        margin-bottom: 0;
        margin-right: 0.5rem;
    }
    
    .social-links {
        margin-top: 0;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .hero-slider {
        height: 80vh;
    }
    
    .slide-content {
        max-width: 100%;
    }
    
    .about-section, .contact-container {
        flex-direction: column;
    }
    
    .image-frame::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
    }

    footer .footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    
    .footer-newsletter form {
        flex-direction: column;
    }
    
    .footer-newsletter input {
        border-radius: var(--border-radius);
        margin-bottom: 0.5rem;
    }
    
    .footer-newsletter button {
        border-radius: var(--border-radius);
        padding: 0.8rem;
    }

    h3 {
        text-align: center;
    }
}




/* ICONE WHATSAPP */
/* Estilo do ícone do WhatsApp */
/* Estilo do ícone do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px; /* Distância do fundo */
    right: 20px; /* Distância da direita */
    background-color: #25D366; /* Cor de fundo do WhatsApp */
    color: white; /* Cor do ícone */
    border-radius: 50%; /* Deixa o ícone redondo */
    width: 60px; /* Largura */
    height: 60px; /* Altura */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra */
    text-decoration: none; /* Remove sublinhado do link */
    transition: all 0.3s ease; /* Transição suave */
    animation: float 3s ease-in-out infinite; /* Animação de flutuação */
}

.whatsapp-float:hover {
    background-color: #128C7E; /* Cor ao passar o mouse */
    transform: scale(1.1); /* Aumenta o tamanho ao passar o mouse */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Sombra mais intensa */
}

.whatsapp-float svg {
    width: 32px; /* Tamanho do ícone */
    height: 32px;
    fill: white; /* Cor do ícone */
}

/* Animação de pulsar */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Animação de flutuação */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Adiciona a animação de pulsar */
.whatsapp-float::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}


