/* style.css - Estilos completos do site Arte Móveis */

:root {
    /* Cores principais */
    --primary-color: #0a5c36;        /* Verde escuro principal */
    --secondary-color: #1e7e34;      /* Verde médio */
    --accent-color: #28a745;         /* Verde claro */
    --light-color: #f8f9fa;          /* Cinza muito claro */
    --dark-color: #082622;           /* Verde escuro (cabeçalho/rodapé) */
    --text-color: #343a40;           /* Cinza escuro */
    --text-light: #6c757d;           /* Cinza médio */
    --text-on-dark: #ffffff;         /* Texto sobre fundo escuro */
    --border-color: #dee2e6;         /* Cor das bordas */
    --shadow-color: rgba(10, 92, 54, 0.1); /* Sombra verde suave */
    
    /* Cores para botões específicos */
    --whatsapp-color: #25D366;
    --facebook-color: #3b5998;
    --instagram-color: #E1306C;
}

/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Roboto', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #084629;
    border-color: #084629;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 92, 54, 0.3);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: #ffffff;
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-facebook {
    background-color: var(--facebook-color);
    color: white;
    border: none;
}

.btn-facebook:hover {
    background-color: #2d4373;
}

.btn-instagram {
    background-color: var(--instagram-color);
    color: white;
    border: none;
}

.btn-instagram:hover {
    background-color: #c13584;
}

/* Header */
.header {
    background-color: var(--dark-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: #cce7d0;
}

.nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #cce7d0;
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--light-color);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    height: 400px;
}

.hero-image-overlay {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Seções comuns */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Seção Produtos */
.produtos-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.produto-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--accent-color);
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.produto-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.produto-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.produto-card p {
    color: var(--text-light);
}

/* Seção Serviços */
.servicos-destaque {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.servico-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-left: 4px solid var(--accent-color);
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.servico-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.servico-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.servico-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.saiba-mais {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.saiba-mais:hover {
    color: var(--secondary-color);
    gap: 10px;
}

/* Seção Diferenciais */
.diferenciais-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.diferencial-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-bottom: 4px solid var(--accent-color);
}

.diferencial-card:hover {
    transform: translateY(-5px);
}

.diferencial-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.diferencial-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.diferencial-card p {
    color: var(--text-light);
}

/* Seção Horário */
.horario-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
}

.horario-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.horario-info {
    flex: 1;
    min-width: 300px;
}

.horario-info h2 {
    color: white;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.horario-info h2 i {
    color: #cce7d0;
}

.horario-lista {
    list-style: none;
    margin-bottom: 20px;
}

.horario-lista li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.horario-lista .dia {
    font-weight: 500;
}

.horario-lista .horas {
    color: #cce7d0;
    font-weight: 600;
}

.horario-nota {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.horario-cta {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.horario-cta h3 {
    color: white;
    margin-bottom: 10px;
}

.horario-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Seção Redes Sociais */
.redes-sociais {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.rede-card {
    background: white;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.rede-card:hover {
    transform: translateY(-10px);
}

.rede-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.rede-card.facebook .rede-icon {
    color: var(--facebook-color);
}

.rede-card.instagram .rede-icon {
    color: var(--instagram-color);
}

.rede-card.whatsapp .rede-icon {
    color: var(--whatsapp-color);
}

.rede-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.rede-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.instagram-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.whatsapp-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-link {
    background-color: var(--light-color);
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-link:hover {
    background-color: #e9ecef;
}

/* Seção CTA Final */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0c6b3d 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col p {
    color: #ced4da;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ced4da;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info li i {
    color: var(--accent-color);
    min-width: 20px;
    margin-top: 2px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    font-size: 0.9rem;
}

.footer-cnpj {
    margin-top: 10px;
    font-style: italic;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 15px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.whatsapp-float:hover .whatsapp-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-options a {
    display: block;
    padding: 10px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 5px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-options a:hover {
    background-color: var(--light-color);
}

.whatsapp-options a i {
    color: var(--whatsapp-color);
}

/* ESTILOS PARA O CARROSSEL DE FORNECEDORES */
.fornecedores-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.fornecedores-title {
    text-align: center;
    margin-bottom: 40px;
}

.fornecedores-title h2 {
    color: #0a5c36;
    font-size: 2rem;
    margin-bottom: 10px;
}

.fornecedores-title p {
    color: #6c757d;
    font-size: 1.1rem;
}

.fornecedores-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 50px;
}

.fornecedores-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.fornecedores-slide {
    flex: 0 0 auto;
    width: 150px;
}

.fornecedores-slide-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.fornecedores-slide-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #0a5c36;
}

.fornecedores-logo {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.fornecedores-slide-inner:hover .fornecedores-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.fornecedores-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: #0a5c36;
    font-size: 1.2rem;
}

.fornecedores-carousel-btn:hover {
    background-color: #0a5c36;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.fornecedores-carousel-btn.prev {
    left: 0;
}

.fornecedores-carousel-btn.next {
    right: 0;
}

.fornecedores-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.fornecedores-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dee2e6;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.fornecedores-dot.active {
    background-color: #0a5c36;
    transform: scale(1.2);
}

.fornecedores-dot:hover {
    background-color: #1e7e34;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        width: 100%;
        height: 300px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .fornecedores-carousel-container {
        padding: 0 40px;
    }
    
    .fornecedores-slide {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
    }
    
    .nav ul li {
        margin: 0 0 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .horario-content,
    .cta-buttons {
        flex-direction: column;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .fornecedores-carousel-container {
        padding: 0 35px;
    }
    
    .fornecedores-slide {
        width: 130px;
    }
    
    .fornecedores-slide-inner {
        height: 90px;
        padding: 15px;
    }
    
    .fornecedores-logo {
        max-width: 110px;
        max-height: 45px;
    }
    
    .fornecedores-carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .fornecedores-title h2 {
        font-size: 1.6rem;
    }
    
    .fornecedores-carousel-container {
        padding: 0 30px;
    }
    
    .fornecedores-slide {
        width: 120px;
    }
    
    .fornecedores-slide-inner {
        height: 80px;
        padding: 12px;
    }
    
    .fornecedores-logo {
        max-width: 100px;
        max-height: 40px;
    }
    
    .fornecedores-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
/* Estilos para o plugin do Facebook */
.facebook-plugin {
    width: 100%;
    margin: 15px 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.facebook-plugin .fb-page,
.facebook-plugin .fb-page span,
.facebook-plugin .fb-page span iframe {
    width: 100% !important;
    max-width: 500px;
}

/* Responsividade para a seção de redes sociais */
@media (max-width: 1200px) {
    .redes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rede-card.facebook {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .redes-grid {
        grid-template-columns: 1fr;
    }
    
    .rede-card.facebook {
        grid-column: span 1;
    }
    
    .facebook-plugin .fb-page,
    .facebook-plugin .fb-page span,
    .facebook-plugin .fb-page span iframe {
        max-width: 100%;
    }
}