/* Estilos para o site Ponto Arte */

/* Cores da identidade visual */
:root {
    --fundo: #EFE3D1;
    --texto: #6B4C3B;
    --detalhes: #8B5E3C;
    --secundario: #D1B79F;
    --branco: #FFFFFF;
    --preto: #333333;
}

/* Reset e estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--fundo);
    color: var(--texto);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--detalhes);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--texto);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
    color: var(--detalhes);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--detalhes);
    margin: 10px auto;
}

img {
    max-width: 100%;
    height: auto;
}

button, .btn {
    padding: 12px 24px;
    background-color: var(--detalhes);
    color: var(--fundo);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

button:hover, .btn:hover {
    background-color: var(--texto);
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 10px 20px;
    background-color: transparent;
    color: var(--detalhes);
    border: 2px solid var(--detalhes);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--detalhes);
    color: var(--fundo);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 60px 20px;
}

/* Header e Navegação */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--fundo);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-height: 80px;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--detalhes);
    transition: width 0.3s ease;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

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

/* Hero Section */
.hero {
    height: 80vh;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--branco);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Featured Products Slideshow */
.featured-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.slideshow {
    position: relative;
}

.slide {
    display: none;
    text-align: center;
}

.slide img {
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.caption {
    padding: 15px;
    font-size: 1.2rem;
    color: var(--detalhes);
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: var(--branco);
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 50%;
    background-color: rgba(139, 94, 60, 0.7);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background-color: rgba(107, 76, 59, 0.9);
}

.dots-container {
    text-align: center;
    margin-top: 15px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: var(--secundario);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: var(--detalhes);
}

/* About Preview */
.about-preview {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text, .about-image {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Stones Preview */
.stones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stone-card {
    background-color: var(--branco);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

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

.stone-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.stone-card h3 {
    margin: 15px 0 5px;
}

/* Fair Info */
.fair-info {
    background-color: var(--secundario);
    padding: 60px 20px;
}

.fair-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.fair-card {
    background-color: var(--fundo);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.fair-card i {
    font-size: 2.5rem;
    color: var(--detalhes);
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: var(--texto);
    color: var(--fundo);
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-logo, .footer-contact, .footer-nav {
    flex: 1;
    min-width: 250px;
}

.footer-logo .logo-small {
    max-height: 60px;
    margin-bottom: 15px;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secundario);
}

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

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a, .footer-contact a {
    color: var(--fundo);
}

.footer-nav a:hover, .footer-contact a:hover {
    color: var(--secundario);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsivo */
@media (max-width: 900px) {
    header {
        padding: 20px;
    }
    
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--fundo);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    .menu.active {
        display: flex;
    }
    
    .menu li {
        margin: 10px 0;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-preview {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 40px 15px;
    }
    
    .prev, .next {
        padding: 10px;
        font-size: 1rem;
    }
}
