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

:root {
    --blue-900: #0a1628;
    --blue-800: #0f2240;
    --blue-700: #163363;
    --blue-600: #1e4d8a;
    --blue-500: #2563eb;
    --blue-400: #4a8af5;
    --blue-300: #7db0ff;
    --blue-200: #b8d4ff;
    --blue-100: #e8f1ff;
    --gold: #f5a623;
    --gold-light: #ffd78a;
    --white: #ffffff;
    --gray-100: #f4f6f9;
    --gray-200: #e2e6ed;
    --gray-300: #c5ccd8;
    --gray-400: #8a95a8;
    --gray-500: #5a6578;
    --gray-600: #3d4555;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, .06);
    --shadow-md: 0 8px 30px rgba(10, 22, 40, .1);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, .15);
    --shadow-glow: 0 0 40px rgba(37, 99, 235, .25);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--blue-900);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
    line-height: 1.2
}

a {
    text-decoration: none;
    color: inherit
}

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

button {
    border: none;
    cursor: pointer;
    font-family: inherit
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all .4s cubic-bezier(.4, 0, .2, 1)
}

.nav.scrolled {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--blue-500);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    color: var(--white);
    font-size: 18px;
    letter-spacing: -1px
}

.nav-logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--blue-900)
}

.nav-logo-text span {
    color: var(--blue-500)
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-500);
    transition: color .3s
}

.nav-links a:hover {
    color: var(--blue-500)
}

.nav-cta {
    background: var(--blue-500);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all .3s
}

.nav-cta:hover {
    background: var(--blue-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow)
}

.nav-toggle {
    display: none;
    background: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--blue-900);
    border-radius: 2px;
    transition: all .3s
}

/* ─── MOBILE NAV ─── */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all
}

.mobile-menu a {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--blue-900)
}

@media(max-width:768px) {
    .nav-links {
        display: none
    }

    .nav-toggle {
        display: flex
    }
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-100) 0%, var(--white) 40%, var(--blue-100) 100%)
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, .08) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 8s ease-in-out infinite
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 166, 35, .06) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 10s ease-in-out infinite reverse
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(30px, -30px) scale(1.05)
    }
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-500);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeUp .8s ease both
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: var(--blue-900);
    margin-bottom: 20px;
    animation: fadeUp .8s ease .1s both
}

.hero h1 em {
    font-style: normal;
    color: var(--blue-500);
    position: relative
}

.hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--blue-200);
    border-radius: 4px;
    z-index: -1
}

.hero-sub {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 480px;
    margin-bottom: 32px;
    animation: fadeUp .8s ease .2s both
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp .8s ease .3s both
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.btn-primary {
    background: var(--blue-500);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 99, 235, .3)
}

.btn-primary:hover {
    background: var(--blue-600);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, .4)
}

.btn-outline {
    background: transparent;
    color: var(--blue-900);
    border: 2px solid var(--gray-200)
}

.btn-outline:hover {
    border-color: var(--blue-500);
    color: var(--blue-500);
    transform: translateY(-3px)
}

.hero-visual {
    position: relative;
    animation: fadeUp .8s ease .4s both
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-md);
    transition: all .4s;
    position: relative;
    overflow: hidden
}

.hero-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.hero-card:nth-child(1) {
    grid-column: span 2
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px
}

.hero-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px
}

.hero-card p {
    font-size: 13px;
    color: var(--gray-400)
}

.hc-blue {
    background: var(--blue-100);
    color: var(--blue-500)
}

.hc-gold {
    background: #fff5e0;
    color: var(--gold)
}

.hc-green {
    background: #e6f9ef;
    color: #22c55e
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media(max-width:768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 20px 60px
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto
    }

    .hero-actions {
        justify-content: center
    }

    .hero-visual {
        max-width: 400px;
        margin: 0 auto
    }
}

/* ─── STATS ─── */
.stats {
    background: var(--blue-900);
    padding: 60px 0;
    position: relative;
    overflow: hidden
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1
}

.stat-num {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px
}

.stat-num span {
    color: var(--blue-400)
}

.stat-label {
    font-size: 14px;
    color: var(--blue-300);
    font-weight: 500
}

@media(max-width:768px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px
    }
}

/* ─── SECTION SHARED ─── */
.section {
    padding: 100px 0
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--blue-300);
    border-radius: 2px
}

.section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: var(--blue-900);
    margin-bottom: 12px
}

.section-desc {
    font-size: 17px;
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto
}

/* ─── PRODUCTS ─── */
.products {
    background: var(--gray-100)
}

.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    background: var(--white);
    color: var(--gray-500);
    border: 2px solid transparent;
    transition: all .3s;
    box-shadow: var(--shadow-sm)
}

.filter-btn:hover {
    color: var(--blue-500);
    border-color: var(--blue-200)
}

.filter-btn.active {
    background: var(--blue-500);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37, 99, 235, .25)
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    position: relative
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
}

.product-thumb {
    height: 200px;
    position: relative;
    overflow: hidden
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s
}

.product-card:hover .product-thumb img {
    transform: scale(1.08)
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--blue-900);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.product-info {
    padding: 20px 24px 24px
}

.product-cat {
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px
}

.product-name {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-900);
    margin-bottom: 8px
}

.product-desc {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 16px;
    line-height: 1.5
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.product-min {
    font-size: 13px;
    color: var(--gray-400)
}

.product-min strong {
    color: var(--blue-500)
}

.product-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue-100);
    color: var(--blue-500);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s
}

.product-card:hover .product-link {
    background: var(--blue-500);
    color: var(--white)
}

/* Card bg colors */
.bg-canecas {
    background: linear-gradient(135deg, #fef3e2, #fde8c8)
}

.bg-vidro {
    background: linear-gradient(135deg, #e8f4fd, #d1ecf9)
}

.bg-aluminio {
    background: linear-gradient(135deg, #eef2f7, #dfe6ef)
}

.bg-acrilico {
    background: linear-gradient(135deg, #f0e6ff, #e4d4fb)
}

.bg-textil {
    background: linear-gradient(135deg, #e6f9ef, #d0f0de)
}

.bg-diversos {
    background: linear-gradient(135deg, #fff3e6, #ffe8cc)
}

.bg-camisetas {
    background: linear-gradient(135deg, #ffe6e6, #ffd4d4)
}

.bg-copos {
    background: linear-gradient(135deg, #e6f0ff, #d4e4ff)
}

.bg-tabuas {
    background: linear-gradient(135deg, #f5efe6, #ede4d6)
}

/* ─── HOW IT WORKS ─── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-200), var(--blue-500), var(--blue-200));
    border-radius: 2px
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--blue-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--blue-500);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md)
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px
}

.step-card p {
    font-size: 15px;
    color: var(--gray-400);
    max-width: 280px;
    margin: 0 auto
}

@media(max-width:768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .steps-grid::before {
        display: none
    }
}

/* ─── ABOUT ─── */
.about {
    background: var(--blue-900);
    color: var(--white);
    position: relative;
    overflow: hidden
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, .15), transparent 70%);
    border-radius: 50%
}

.about .section-tag {
    color: var(--blue-300)
}

.about .section-tag::before,
.about .section-tag::after {
    background: var(--blue-400)
}

.about .section-title {
    color: var(--white)
}

.about .section-desc {
    color: var(--blue-300)
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px
}

.about-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all .4s
}

.about-card:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-4px)
}

.about-card-icon {
    margin-bottom: 16px;
    color: var(--blue-300)
}

.about-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white)
}

.about-card p {
    font-size: 14px;
    color: var(--blue-300);
    line-height: 1.6
}

@media(max-width:768px) {
    .about-grid {
        grid-template-columns: 1fr
    }
}

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px
}

.contact-info p {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 32px
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    transition: all .3s
}

.contact-item:hover {
    background: var(--blue-100);
    transform: translateX(6px)
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0
}

.ci-whatsapp {
    background: #dcfce7;
    color: #22c55e
}

.ci-phone {
    background: var(--blue-100);
    color: var(--blue-500)
}

.ci-email {
    background: #fef3c7;
    color: var(--gold)
}

.ci-instagram {
    background: #fce7f3;
    color: #ec4899
}

.contact-item-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px
}

.contact-item-text p {
    font-size: 14px;
    color: var(--gray-400);
    margin: 0
}

.contact-cta {
    background: var(--blue-900);
    border-radius: var(--radius);
    padding: 48px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden
}

.contact-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2h2v6h-2zM0 20h2v20H0V20zm4 2h2v18H4V22zm4 2h2v16H8V24zm4 2h2v14h-2V26zm4 2h2v12h-2V28z'/%3E%3C/g%3E%3C/svg%3E")
}

.contact-cta h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative
}

.contact-cta p {
    font-size: 16px;
    color: var(--blue-300);
    margin-bottom: 28px;
    position: relative
}

.contact-cta .btn {
    position: relative
}

@media(max-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}

/* ─── FOOTER ─── */
.footer {
    background: var(--blue-900);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 32px 0
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.footer p {
    font-size: 14px;
    color: var(--blue-400)
}

.footer a {
    color: var(--blue-300);
    transition: color .3s
}

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

.footer-dev {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--blue-400);
    transition: color .3s
}

.footer-dev img {
    opacity: .7;
    transition: opacity .3s
}

.footer-dev:hover {
    color: var(--white)
}

.footer-dev:hover img {
    opacity: 1
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    transition: all .3s;
    animation: bounceIn .6s ease .5s both
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, .5)
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: var(--white)
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0)
    }

    60% {
        transform: scale(1.15)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s cubic-bezier(.4, 0, .2, 1)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}
