/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --sage-green: #a4b9a0;
    --sage-light: #b6cbb2;
    --sage-dark: #8c9e88;
    --cream-bg: #fcf2d3;
    --cream-light: #faf7ef;
    --cream-card: rgba(252, 242, 211, 0.95);
    --dark-charcoal: #2d3a31;
    --white: #ffffff;
    --black: #000000;
    --text-dark: #2d3a31;
    --text-muted: #5e6f62;
    --accent-gold: #d9b48f;
    --accent-terracotta: #c48b71;
    --whatsapp-green: #25d366;
    --telegram-blue: #0088cc;
    
    --shadow-soft: 0 10px 30px rgba(45, 58, 49, 0.06);
    --shadow-medium: 0 15px 40px rgba(45, 58, 49, 0.1);
    --shadow-black: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--sage-green);
    overflow-x: hidden;
    position: relative;
}

/* Adicionar textura ao fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(254, 251, 240, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 85% 80%, rgba(140, 158, 136, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(252, 242, 211, 0.2) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

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

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.main-logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Logo Image */
.logo-image {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.08));
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 247, 239, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--sage-light);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(45, 58, 49, 0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo-main {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.main-logo-image {
    height: 220px;
    width: auto;
    max-width: 100%;
    border-radius: 44px;
    filter: drop-shadow(0 10px 25px rgba(45, 58, 49, 0.12));
    animation: float 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.main-logo-image:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 15px 35px rgba(45, 58, 49, 0.18));
}

.hero-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark-charcoal);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.action-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border: 2px solid var(--dark-charcoal);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 15px rgba(45, 58, 49, 0.08);
}

.btn-telegram {
    background: var(--telegram-blue);
    color: var(--white);
    border-color: var(--telegram-blue);
}

.btn-telegram:hover {
    background: #0077b3;
    border-color: #0077b3;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 136, 204, 0.2);
}

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

.btn-whatsapp:hover {
    background: #20ba5a;
    border-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* Carrossel de Lojas */
.stores-carousel {
    margin-top: 3rem;
    text-align: center;
}

.carousel-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.store-item {
    flex-shrink: 0;
    width: 120px;
}

.store-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    padding: 1.2rem;
    border-radius: 20px;
    background: var(--cream-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 58, 49, 0.06);
    box-shadow: var(--shadow-soft);
}

.store-link:hover {
    transform: translateY(-5px);
    background: var(--cream-light);
    box-shadow: var(--shadow-medium);
    border-color: var(--sage-light);
}

.store-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    object-fit: contain;
}

.store-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-track:hover {
    animation-play-state: paused;
}

.bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--cream-bg);
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(252, 242, 211, 0.3);
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

/* Social Media Section */
.social-section {
    padding: 80px 0;
    background: var(--cream-light);
    position: relative;
    border-top: 1px solid var(--sage-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    background: var(--white);
    border: 1px solid rgba(45, 58, 49, 0.08);
    border-radius: 24px;
    padding: 2.2rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--sage-light);
}

.social-card.instagram {
    border-bottom: 4px solid #bc1888;
}

.social-card.telegram {
    border-bottom: 4px solid #0088cc;
}

.social-card.whatsapp {
    border-bottom: 4px solid #25d366;
}

.social-card.contact {
    border-bottom: 4px solid var(--accent-gold);
}

.social-card.youtube {
    border-bottom: 4px solid #ff0000;
}

.social-card.x {
    border-bottom: 4px solid #000000;
}

.x-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-card.tiktok {
    border-bottom: 4px solid #010101;
}

.social-icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(45, 58, 49, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    background: var(--cream-bg);
    color: var(--dark-charcoal);
}

.social-card.instagram .social-icon { color: #bc1888; }
.social-card.telegram .social-icon { color: #0088cc; }
.social-card.whatsapp .social-icon { color: #25d366; }
.social-card.contact .social-icon { color: var(--accent-terracotta); }
.social-card.youtube .social-icon { color: #ff0000; }
.social-card.x .social-icon { color: #000000; }
.social-card.tiktok .social-icon { color: #010101; }

.social-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
}

.social-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.social-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: 'Courier New', monospace;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--dark-charcoal);
    color: var(--cream-light);
    padding: 60px 0 30px;
    border-top: 1px solid var(--sage-light);
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

.footer-logo p {
    color: rgba(254, 251, 240, 0.8);
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(254, 251, 240, 0.1);
}

.footer-bottom p {
    color: rgba(254, 251, 240, 0.6);
    font-size: 0.9rem;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.01);
    }
}

/* ===== TAMANHOS RESPONSIVOS - TABLET (768px) ===== */
@media (max-width: 768px) {
    .main-logo-image {
        max-height: 180px;
        width: auto;
    }
    
    .main-logo-container {
        gap: 15px;
    }
    
    .logo-image {
        max-height: 45px;
        width: auto;
    }
    
    .footer-logo-image {
        max-height: 70px;
        width: auto;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 80%;
        max-width: 350px;
    }
    
    .carousel-title {
        font-size: 1.4rem;
    }
    
    .store-item {
        width: 110px;
    }
    
    .store-logo {
        width: 55px;
        height: 55px;
    }
    
    .store-name {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
}

/* ===== TAMANHOS RESPONSIVOS - MOBILE (480px) ===== */
@media (max-width: 480px) {
    html, body {
        width: 100vw;
        overflow-x: hidden;
    }

    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
        width: 100%;
    }

    .hero-container {
        padding: 0 15px;
        padding-top: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: calc(100vh - 80px);
        width: 100%;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .main-logo-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .main-logo-image {
        max-height: 150px;
        width: auto !important;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        object-fit: contain;
    }
    
    .logo-main {
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .hero-description {
        font-size: 1.1rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 2rem auto;
    }
    
    .action-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        padding: 1rem 1.8rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 290px;
        display: inline-flex;
        justify-content: center;
    }
    
    .social-section .section-title {
        font-size: 2rem;
    }
    
    .social-section .section-description {
        font-size: 1rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .social-card {
        padding: 1.8rem;
        text-align: center;
    }
    
    .social-icon {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.2rem;
    }
    
    .carousel-title {
        font-size: 1.2rem;
    }
}

/* Efeitos de partículas */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cream-bg);
    border-radius: 50%;
    animation: particle-float 8s linear infinite;
    box-shadow: 0 0 6px var(--cream-bg);
    opacity: 0.6;
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--sage-light);
    border: 2px solid var(--dark-charcoal);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sage-green);
}

/* Seleção de texto personalizada */
::selection {
    background: var(--sage-dark);
    color: var(--white);
}

/* Focus states para acessibilidade */
.btn:focus,
.social-card:focus {
    outline: 3px solid var(--sage-dark);
    outline-offset: 2px;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
