/* Reset & Base Styles */
:root {
    --primary: #0066CC; /* Bright Blue */
    --primary-dark: #004C99;
    --primary-light: #E5F0FA;
    --secondary: #FF6B00; /* Vibrant Orange */
    --secondary-dark: #CC5500;
    --accent: #FFD100; /* Yellow */
    --success: #25D366; /* WhatsApp Green */
    --text-main: #333333;
    --text-light: #666666;
    --bg-main: #FAFAFA;
    --bg-white: #FFFFFF;
    --border: #E0E0E0;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.text-white { color: var(--bg-white) !important; }
.mt-4 { margin-top: 2rem; }
.center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}
.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-whatsapp {
    background-color: var(--success);
    color: white;
}
.btn-whatsapp:hover {
    background-color: #1EBE5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--primary);
}
.btn-white:hover {
    background-color: var(--bg-main);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-main);
}
.section-title span {
    color: var(--primary);
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.badge-green {
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--success);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-links a {
    margin-left: 20px;
    opacity: 0.8;
}
.top-links a:hover {
    opacity: 1;
}

/* Header */
.main-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}
.logo-accent {
    color: var(--secondary);
}

.logo-img {
    max-height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo-img {
    max-height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-weight: 600;
    color: var(--text-main);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--primary);
}
.nav-links a:hover::after {
    width: 100%;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    padding: 120px 0 160px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.hero-title span {
    color: var(--accent);
}
.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 90px;
}
.hero-wave .shape-fill {
    fill: var(--bg-main);
}

/* Info Banner */
.info-banner {
    padding: 40px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.info-item {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}
.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.info-text h3 {
    margin-bottom: 4px;
    font-size: 1.2rem;
}
.info-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* About */
.about {
    padding: 80px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-features {
    margin: 30px 0;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
}
.about-features i {
    color: var(--secondary);
    font-size: 1.2rem;
}
.about-image {
    position: relative;
}
.about-image .image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light) 0%, #FFFFFF 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}
.about-image .image-wrapper img {
    mix-blend-mode: multiply;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    max-height: 340px;
    width: auto;
    object-fit: contain;
    display: block;
}
.about-image:hover .image-wrapper img {
    transform: scale(1.08) rotate(3deg);
}
.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--secondary);
    color: white;
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
}
.experience-badge .number {
    font-size: 3rem;
    font-weight: 800;
}
.experience-badge .text {
    font-weight: 600;
    line-height: 1.2;
}

/* Categories */
.categories {
    padding: 80px 0;
    background-color: white;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.category-card {
    background: var(--bg-main);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border);
}
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.category-img {
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    background-color: var(--primary-light);
}
.praia-bg { background-image: url('assets/produtos/190.jpg'); }
.aventura-bg { background-image: url('assets/produtos/012.jpg'); }
.esporte-bg { background-image: url('assets/produtos/039.jpg'); }
.diversos-bg { background-image: url('assets/produtos/062.jpg'); }

/* Products */
.products {
    padding: 80px 0;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.product-filters {
    display: flex;
    gap: 10px;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.product-image {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background: var(--bg-main);
    overflow: hidden;
}
.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}
.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-code {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 600;
}
.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-main);
}
.product-specs {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
    flex-grow: 1;
}
.product-specs li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding: 4px 0;
}
.product-action {
    margin-top: auto;
}
.btn-quote {
    width: 100%;
    background-color: var(--success);
    color: white;
    padding: 10px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.btn-quote:hover {
    background-color: #1EBE5A;
}

.view-all-container {
    text-align: center;
    margin-top: 50px;
}

/* Sustainability */
.sustainability {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 102, 204, 0.9), rgba(0, 102, 204, 0.9)), url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    background-attachment: fixed;
}
.sustainability .section-title span {
    color: var(--accent); /* Premium yellow contrast on blue background */
}
.sustain-text {
    max-width: 600px;
}

/* CTA */
.cta-section {
    padding: 80px 0;
    background-color: var(--bg-main);
}
.cta-box {
    background-color: white;
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background-color: var(--secondary);
}
.cta-form {
    display: flex;
    gap: 15px;
    max-width: 800px;
    margin: 30px auto 0;
}
.cta-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
}
.cta-form input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
.main-footer {
    background-color: var(--text-main);
    color: white;
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-about p {
    color: #AAA;
    margin: 20px 0;
    max-width: 300px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.social-links a:hover {
    background-color: var(--secondary);
}
.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}
.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #AAA;
}
.footer-links a:hover {
    color: white;
    padding-left: 5px;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #AAA;
}
.footer-contact i {
    color: var(--secondary);
}
.footer-bottom {
    background-color: #222;
    padding: 20px 0;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
}

/* Responsive */
@media (max-width: 992px) {
    .info-grid, .about-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-form {
        flex-direction: column;
    }
    .hero-title {
        font-size: 3rem;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .header-actions {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hero-cta {
        flex-direction: column;
    }
    .hero {
        padding: 80px 0 120px;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
    }
    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }
}
