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

:root {
    --primary: #022C57;
    --accent: #FF46A7;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #fafafa;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: #022C57;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Minimalista */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(2, 44, 87, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-text {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--white);
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 48px;
}

.nav-link {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

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

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #011a33 0%, #022C57 30%, #034a8a 70%, #022C57 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 70, 167, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255, 70, 167, 0.1) 0%, transparent 50%),
        repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.03) 1deg, transparent 2deg, rgba(255, 255, 255, 0.03) 3deg);
    animation: rotate 60s linear infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.02) 49%, rgba(255, 255, 255, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.02) 49%, rgba(255, 255, 255, 0.02) 51%, transparent 52%);
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-subheadline {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 24px;
    align-items: center;
}

.hero-image {
    position: relative;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 70, 167, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 70, 167, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Seção de Autoridade */
.essence {
    padding: 160px 0;
    position: relative;
    background: linear-gradient(135deg, #022C57 0%, #034a8a 50%, #011a33 100%);
    overflow: hidden;
}

.essence::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 70, 167, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 70, 167, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.essence::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    pointer-events: none;
    opacity: 0.5;
}

.essence-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.essence-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.essence-title {
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
    text-align: center;
}

.essence-description {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

/* Vitrine Interativa */
.showcase {
    padding: 160px 0;
    position: relative;
    background: linear-gradient(90deg, #022C57 0%, #034a8a 25%, #022C57 50%, #034a8a 75%, #022C57 100%);
    background-size: 400% 100%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

.showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.03) 20px,
            rgba(255, 255, 255, 0.03) 22px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(255, 70, 167, 0.05) 20px,
            rgba(255, 70, 167, 0.05) 22px
        );
    pointer-events: none;
}

.showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        polygon(0% 0%, 100% 0%, 100% 30%, 0% 50%),
        polygon(0% 70%, 100% 50%, 100% 100%, 0% 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.showcase-header,
.showcase-carousel,
.carousel-controls {
    position: relative;
    z-index: 1;
}

.showcase-header {
    margin-bottom: 80px;
    text-align: center;
}

.showcase-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: -1px;
}

.showcase-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 48px;
}

.carousel-track {
    display: flex;
    gap: 32px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-track.no-transition {
    transition: none;
}

.product-card {
    flex: 0 0 calc(50% - 16px);
    min-width: 0;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* Destaques */
.highlights {
    padding: 120px 0;
    position: relative;
    background: 
        radial-gradient(ellipse at top left, rgba(255, 70, 167, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 70, 167, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #034a8a 0%, #022C57 50%, #011a33 100%);
    overflow: hidden;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
    background-size: 80px 80px, 100px 100px;
    background-position: 0 0, 40px 40px;
    opacity: 0.6;
    pointer-events: none;
}

.highlights::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(255, 255, 255, 0.02) 1px,
            rgba(255, 255, 255, 0.02) 2px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255, 255, 255, 0.02) 1px,
            rgba(255, 255, 255, 0.02) 2px
        );
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
}

.highlights-grid {
    position: relative;
    z-index: 1;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-item {
    text-align: center;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.highlight-text {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA Final */
.cta-final {
    padding: 160px 0;
    position: relative;
    background: linear-gradient(135deg, #011a33 0%, #022C57 50%, #034a8a 100%);
    color: var(--white);
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 70, 167, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 70, 167, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    background-size: 60px 60px;
    opacity: 0.4;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

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

.cta-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 48px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.btn-cta {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 6px 30px rgba(255, 70, 167, 0.4);
    font-size: 16px;
    padding: 20px 56px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 70, 167, 0.5);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    position: relative;
    background: 
        linear-gradient(180deg, #034a8a 0%, #022C57 30%, #011a33 70%, #000000 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, 0.03) 3px,
            rgba(255, 255, 255, 0.03) 4px
        );
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 70, 167, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 70, 167, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    background-size: 200px 100%;
    background-repeat: repeat-x;
    opacity: 0.5;
    pointer-events: none;
}

.footer-content,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 64px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 45px;
    width: auto;
    display: block;
    margin-bottom: 16px;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-brand a {
    display: inline-block;
    text-decoration: none;
}

.footer-tagline {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    letter-spacing: 0.5px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.footer-address {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

.footer-title {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-link {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.footer-bottom .footer-address {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    margin-top: 12px;
    margin-bottom: 0;
}

/* Botão Instagram Flutuante */
.instagram-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(188, 24, 136, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(188, 24, 136, 0.6);
}

.instagram-float svg {
    width: 32px;
    height: 32px;
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .instagram-float {
        width: 56px;
        height: 56px;
        bottom: 90px;
        right: 20px;
    }
    
    .instagram-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }

    .hero-headline {
        font-size: 48px;
    }


    .product-card {
        flex: 0 0 85%;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .nav {
        gap: 24px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }


    .showcase-title {
        font-size: 36px;
    }

    .product-card {
        flex: 0 0 calc(50% - 16px);
    }

    .product-image-container {
        height: 450px;
    }

    .cta-title {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .nav {
        display: none;
    }

    .hero-headline {
        font-size: 32px;
    }

    .showcase-title {
        font-size: 28px;
    }

    .product-card {
        flex: 0 0 calc(100% - 16px);
    }
    
    .product-image-container {
        height: 400px;
    }
}
