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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #000000;
    overflow-x: hidden;
}

/* Variáveis CSS */
:root {
    --primary-black: #000000;
    --primary-gold: #D4AF37;
    --secondary-green: #A9C1A3;
    --text-white: #FFFFFF;
    --text-gray: #B3B3B3;
    --font-title: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Tipografia */
h1, h2, h3 {
    font-family: var(--font-title);
    font-weight: 600;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Seções */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 2rem;
}

.section-text {
    color: var(--text-gray);
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--primary-black);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    background: var(--text-white);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

/* Seção Hero */
.hero-section {
    height: 100vh;
    background: url('../assets/images/gelato_1.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-button {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.hero-button:hover {
    background: var(--primary-black);
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Grid de características */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
}

.feature-title {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-text {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Grid de lojas */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.store-card {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.store-card:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.store-title {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.store-info {
    margin-bottom: 2rem;
}

.store-address,
.store-hours,
.store-phone {
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.store-button {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.store-button:hover {
    background: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Grid de eventos */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.event-item {
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.event-item:hover {
    transform: translateY(-5px);
}

.event-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

.event-title {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.events-cta {
    text-align: center;
    margin-top: 3rem;
}

.events-button {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.events-button:hover {
    background: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Grid de avaliações */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.review-card:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.review-stars {
    margin-bottom: 1rem;
}

.star {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin: 0 0.1rem;
}

.review-text {
    color: var(--text-white);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-author {
    color: var(--primary-gold);
    font-weight: 500;
}

/* Grid de contato */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.contact-icon {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.contact-title {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.contact-button {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Rodapé */
.footer {
    background: rgba(212, 175, 55, 0.1);
    border-top: 1px solid var(--primary-gold);
    padding: 2rem 0;
}

.footer-content {
    text-align: center;
}

.footer-text {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.footer-text a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: var(--text-white);
}

.footer-copy {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .features-grid,
    .stores-grid,
    .events-grid,
    .reviews-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-button,
    .events-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .store-card,
    .review-card,
    .contact-card {
        padding: 1.5rem;
    }
}

