@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #0061af;
    --primary-light: #3381bf;
    --secondary: #2d3748;
    --accent: #f6ad55;
    --bg-light: #f7fafc;
    --text-dark: #2d3748;
    --text-muted: #718096;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --glass: rgba(255, 255, 255, 0.7);
    --transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Header & Nav */
header.site-header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
}

.nav-container {
    display: flex;
    align-items: center;
    height: 100px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 60px;
    /* Afasta o logo do menu Home */
}

.logo img {
    box-shadow: none !important;
    filter: none !important;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    font-weight: 600;
    color: var(--secondary);
}

.nav-item:hover {
    color: var(--primary);
}

.btn-contact {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-contact:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header-socials {
    display: flex;
    gap: 20px;
    margin-left: auto;
    padding-left: 30px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.social-icon {
    font-size: 1.4rem;
    color: var(--secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon.instagram:hover {
    color: #E1306C;
}

.social-icon.whatsapp:hover {
    color: #25D366;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 30%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn-hero {
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Catalog */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: #fff;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-category {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 800;
    margin-bottom: 10px;
}

.product-name {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Footer */
footer.site-footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Efeitos Especiais Cabeçalho & Rodapé */
header.site-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 97, 175, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header.site-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

footer.site-footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

footer.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% auto;
    animation: gradientMove 5s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    margin-left: auto;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    padding: 40px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--secondary);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-socials {
    margin-top: auto;
    display: flex;
    gap: 20px;
    padding-top: 30px;
}

.mobile-social-icon {
    font-size: 1.8rem;
    color: var(--primary);
}

/* Responsividade Geral */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 15px;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {

    .nav-menu,
    .header-socials {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-container {
        height: 80px;
    }

    .logo {
        margin-right: 0;
        width: 60px !important;
        height: 60px !important;
    }

    section {
        padding: 50px 0;
    }

    .hero {
        height: auto;
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .catalog-grid,
    .features-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.hover-animate { transition: var(--transition); }
.hover-animate:hover { transform: translateY(-5px) scale(1.01); box-shadow: 0 20px 25px -5px rgba(0, 97, 175, 0.2), 0 10px 10px -5px rgba(0, 97, 175, 0.1) !important; }


/* Gallery & Modal Shared Styles */
.gallery-grid, .segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.gallery-item, .segment-item {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.gallery-item.clickable, .segment-item.clickable {
    cursor: pointer;
}

.gallery-item:hover, .segment-item:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 10px 25px rgba(0, 97, 175, 0.1);
    border-color: var(--primary);
}

.segment-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.segment-label, .gallery-label {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1rem;
}

.segment-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.segment-modal.active {
    opacity: 1;
    visibility: visible;
}

.segment-modal-content {
    background: white;
    padding: 20px 30px 30px;
    border-radius: 20px;
    max-width: 800px;
    width: 95%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.segment-modal.active .segment-modal-content {
    transform: scale(1);
}

.modal-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

#segmentModalImage {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.modal-nav-btn.prev { left: -22px; }
.modal-nav-btn.next { right: -22px; }

@media (max-width: 768px) {
    .modal-nav-btn.prev { left: 10px; }
    .modal-nav-btn.next { right: 10px; }
}

.segment-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.segment-modal-close:hover {
    color: var(--primary);
}
