/* ===========================
   Variables & Color Scheme
   =========================== */
:root {
    --hermes-orange: #FF8C42;
    --hermes-orange-dark: #E67E34;
    --hermes-orange-light: #FFB380;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #F8F8F8;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.navbar {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--hermes-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--hermes-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    background: linear-gradient(135deg, var(--hermes-orange) 0%, var(--hermes-orange-dark) 100%);
    color: var(--white);
    padding: 100px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--white);
    color: var(--hermes-orange);
    border-color: var(--white);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--hermes-orange);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.about h2,
.social-media h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--hermes-orange);
    position: relative;
    padding-bottom: 1rem;
}

.about h2::after,
.social-media h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--hermes-orange);
    border-radius: 2px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ===========================
   Social Media Section
   =========================== */
.social-media {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.social-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    min-height: 200px;
}

.social-btn i {
    font-size: 3rem;
}

.social-btn span {
    text-align: center;
}

/* Instagram */
.social-btn.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-btn.instagram:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(240, 148, 51, 0.3);
}

/* TikTok */
.social-btn.tiktok {
    background-color: #000000;
    color: var(--white);
    border-color: var(--hermes-orange);
}

.social-btn.tiktok:hover {
    background: linear-gradient(135deg, #25f4ee 0%, #000000 50%);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 244, 238, 0.3);
}

/* WhatsApp Varejo */
.social-btn.whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.social-btn.whatsapp:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.3);
    background-color: #20BA5A;
}

/* WhatsApp Atacado */
.social-btn.whatsapp-atacado {
    background-color: #128C7E;
    color: var(--white);
}

.social-btn.whatsapp-atacado:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(18, 140, 126, 0.3);
    background-color: #0A7D6C;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 2rem 20px;
    text-align: center;
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social a {
    color: var(--hermes-orange);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--hermes-orange-light);
    transform: scale(1.2);
}

/* ===========================
   Mobile Responsive
   =========================== */
@media (max-width: 768px) {
    /* Header */
    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
    }

    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid var(--bg-light);
    }

    .nav-links a::after {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(15px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-15px);
    }

    /* Hero */
    .hero {
        padding: 40px 20px;
        min-height: 280px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        padding: 11px 25px;
    }

    /* Sections */
    .about,
    .social-media {
        padding: 40px 20px;
    }

    .about h2,
    .social-media h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    /* About */
    .about-content p {
        font-size: 1rem;
    }

    /* Social Buttons */
    .social-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .social-btn {
        min-height: 150px;
        padding: 1.5rem;
    }

    .social-btn i {
        font-size: 2.5rem;
    }

    .social-btn span {
        font-size: 0.95rem;
    }

    .logo {
        height: 40px;
    }

    .header .container {
        padding: 0.75rem 20px;
    }

    /* Footer */
    .footer {
        padding: 1.5rem 20px;
    }

    .footer p {
        margin: 0.4rem 0;
    }

    .footer-social {
        margin-top: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Logo */
    .logo {
        height: 30px;
    }

    /* Hero */
    .hero {
        padding: 20px 20px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.5rem;
    }

    .btn {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    /* Sections */
    .about h2,
    .social-media h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .social-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .social-media {
        padding: 30px 20px;
    }

    .about-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }

    .about {
        padding: 30px 20px;
    }

    .about h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    /* Social Buttons */
    .social-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .social-btn {
        aspect-ratio: 1;
        min-height: auto;
        padding: 1rem;
        font-size: 0.85rem;
    }

    .social-btn i {
        font-size: 2rem;
    }

    .social-btn span {
        font-size: 0.75rem;
    }

    /* Footer */
    .footer {
        padding: 1.2rem 20px;
    }

    .footer p {
        margin: 0.3rem 0;
        font-size: 0.85rem;
    }

    .footer-social {
        gap: 1rem;
        margin-top: 0.6rem;
    }

    .footer-social a {
        font-size: 1.2rem;
    }
}
