/* css/style.css - Premium Update */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Brand Colors extracted from the logo */
    --brand-orange: #ff7300;
    --brand-orange-light: #ff983f;
    --brand-cyan: #00e5ff;
    --brand-cyan-light: #66efff;
    --brand-dark: #090b14;
    
    /* UI Colors (Meio Termo / Slate Theme) */
    --bg-dark: #1e293b; /* Deep slate blue */
    --bg-surface: rgba(15, 23, 42, 0.6);
    --bg-surface-hover: rgba(30, 41, 59, 0.8);
    --text-primary: #f8fafc; /* Light slate text */
    --text-secondary: #94a3b8;
    
    /* Glassmorphism */
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Animated Background */
.bg-animation {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite alternate ease-in-out;
}

.bg-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    opacity: 0.8;
    mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
}

.orb-1 { width: 500px; height: 500px; background: var(--brand-orange); top: -10%; left: -10%; }
.orb-2 { width: 400px; height: 400px; background: var(--brand-cyan); bottom: -10%; right: -10%; animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; background: rgba(255, 115, 0, 0.5); top: 40%; left: 60%; animation-delay: -10s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10%, 15%) scale(1.1); }
    100% { transform: translate(-5%, -10%) scale(0.9); }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Marquee de Topo */
.top-marquee {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, var(--brand-orange), #ff4d00);
    color: white;
    z-index: 1001;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(255, 115, 0, 0.3);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0 40px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Animações de Scroll (Reveal) */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header & Logo */
.main-header {
    position: fixed;
    width: 100%;
    top: 40px; /* Abaixo do marquee */
    z-index: 1000;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px; /* Taller header */
}

/* MAKE LOGO MUCH MORE VISIBLE */
.logo a {
    display: flex;
    align-items: center;
}
.logo img {
    height: 75px; /* Huge increase from 40px */
    filter: drop-shadow(0 0 15px rgba(255, 115, 0, 0.4));
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 50px; /* Mais airoso */
}

.main-nav a:not(.btn-primary) {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.85); /* Mais suave */
}

.main-nav a:not(.btn-primary):hover,
.main-nav a.active:not(.btn-primary) {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5); /* Glow effect */
}

.main-nav a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-cyan));
    transition: width 0.3s ease;
    border-radius: 3px;
}

.main-nav a:not(.btn-primary):hover::after, 
.main-nav a.active:not(.btn-primary)::after {
    width: 100%;
}

/* Botão Mobile Invisível em Desktop */
.mobile-menu-btn {
    display: none !important;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1002;
}

/* Overlay do Menu Mobile */
.mobile-nav-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mobile-nav-links a.active {
    color: var(--brand-orange);
}

/* Buttons - Premium Feel */
.btn-primary {
    background: linear-gradient(135deg, var(--brand-orange), #ff4d00);
    color: white !important;
    padding: 14px 32px;
    border-radius: 50px; /* Estilo pílula mais elegante */
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 115, 0, 0.4);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 115, 0, 0.6);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 115, 0, 0.6);
}
.btn-primary:hover::before {
    left: 100%;
}

.btn-large {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-cyan));
    color: white !important;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 115, 0, 0.5);
}

.btn-outline {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    border: 2px solid var(--text-secondary);
    color: var(--text-primary);
    backdrop-filter: var(--glass-blur);
}

.btn-outline:hover {
    border-color: var(--brand-cyan);
    color: var(--brand-cyan);
    background: rgba(0, 229, 255, 0.05);
    transform: translateY(-3px);
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge-new {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--brand-cyan);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.badge-new i {
    color: var(--brand-orange);
    margin-right: 5px;
}

@keyframes pulseBadge {
    0% { box-shadow: 0 0 0 0 rgba(255, 115, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 115, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 115, 0, 0); }
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.trust-item i {
    color: var(--brand-cyan);
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 240px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 100%), url('../img/hero-bg-premium.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-text {
    flex: 1.2;
}

.hero-text h1 {
    font-size: 3.8rem; /* Reduzido de 4.5rem para evitar quebra excessiva */
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.highlight {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-text p {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 550px;
    font-weight: 300;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 60%);
    z-index: -1;
}

.hero-collage {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.carousel-slide {
    position: absolute;
    width: 120%;
    max-width: 600px;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: rotate(5deg) scale(0.95);
    z-index: 2;
}

.carousel-slide.active {
    opacity: 1;
    transform: rotate(5deg) scale(1);
}

.collage-img {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.2), inset 0 0 40px rgba(0, 229, 255, 0.2);
    animation: spinRing 20s linear infinite;
    z-index: 0;
}

@keyframes spinRing {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.collage-img {
    position: absolute;
    border-radius: 30px;
    border: 3px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    transition: all 0.5s ease;
    object-fit: cover;
}

.img-back-left {
    width: 200px;
    height: 400px;
    left: 0;
    transform: translateZ(-100px) rotateY(15deg) rotateX(5deg) scale(0.9);
    filter: brightness(0.6) blur(2px);
    z-index: 1;
    animation: floatBack 7s infinite ease-in-out;
}

.img-back-right {
    width: 200px;
    height: 400px;
    right: 0;
    transform: translateZ(-100px) rotateY(-15deg) rotateX(5deg) scale(0.9);
    filter: brightness(0.6) blur(2px);
    z-index: 1;
    animation: floatBack 6s infinite ease-in-out reverse;
}

.img-front {
    width: 240px;
    height: 480px;
    z-index: 10;
    transform: translateZ(50px) rotateY(0deg);
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9), 0 0 30px rgba(0, 229, 255, 0.2);
    animation: floatFront 5s infinite ease-in-out;
}

@keyframes floatFront {
    0% { transform: translateZ(50px) translateY(0); }
    50% { transform: translateZ(50px) translateY(-15px); }
    100% { transform: translateZ(50px) translateY(0); }
}

@keyframes floatBack {
    0% { transform: translateZ(-100px) rotateY(15deg) translateY(0); filter: brightness(0.6) blur(2px); }
    50% { transform: translateZ(-100px) rotateY(15deg) translateY(10px); filter: brightness(0.7) blur(1px); }
    100% { transform: translateZ(-100px) rotateY(15deg) translateY(0); filter: brightness(0.6) blur(2px); }
}

.hero-collage:hover .img-back-left { transform: translateZ(-50px) rotateY(5deg) translateX(-40px) scale(0.95); filter: brightness(0.8) blur(0); }
.hero-collage:hover .img-back-right { transform: translateZ(-50px) rotateY(-5deg) translateX(40px) scale(0.95); filter: brightness(0.8) blur(0); }
.hero-collage:hover .img-front { transform: translateZ(80px) scale(1.05); }

/* Steps Section */
.steps {
    padding: 120px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 80px;
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* About Us Section */
.about {
    padding: 120px 0;
    position: relative;
    background: rgba(15,23,42,0.3);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 2;
}

.glow-ring-small {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
    z-index: 1;
}

.about-text {
    flex: 1.2;
}

.about-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--brand-orange);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.map-container {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    min-height: 300px;
}

.step-card {
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, transparent 100%);
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-15px);
    background: var(--bg-surface-hover);
    border-color: rgba(255, 115, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08), inset 0 0 0 1px rgba(255, 115, 0, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    background: linear-gradient(135deg, var(--brand-cyan), #0066ff);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.2);
    transform: rotate(-5deg);
    transition: 0.3s;
}

.step-card:hover .step-icon {
    transform: rotate(0deg) scale(1.1);
}

.step-card h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery {
    padding: 100px 0 150px;
}

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

.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid var(--glass-border);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Customizer Layout (Premium App Feel) */
.customizer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.customizer-panel {
    display: flex;
    flex-direction: column;
}

.order-panel {
    background: rgba(255,255,255,0.5) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    border-radius: 30px !important;
    padding: 40px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 4px rgba(0, 229, 255, 0.1);
    background: #ffffff;
}

/* Select styling */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2300d4ff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5em top 50%;
    background-size: .65em auto;
    cursor: pointer;
}
select.form-control:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Canvas Area */
.canvas-container {
    background: rgba(15,23,42,0.5);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px dashed rgba(255,255,255,0.1);
    position: relative;
    margin-top: 10px;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.2);
}

.controls-bar {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

.btn-icon {
    background: rgba(15,23,42,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-icon:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: white;
    transform: scale(1.1);
}

/* Footer */
.main-footer {
    background: #0f172a;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 80px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 25px;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.footer-col h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.footer-col a:hover {
    color: var(--brand-cyan);
    transform: translateX(5px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-cyan));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    background: #0b1120;
}

/* WhatsApp Float */
.whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    animation: none;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }
    .hero-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-text h1 { font-size: 3.5rem; }
    .hero-text p { margin: 0 auto 40px; max-width: 600px; }
    .hero-actions { justify-content: center; width: 100%; }
    .customizer-layout {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .about-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    .about-text .section-title {
        text-align: center !important;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-header .container { height: 80px; }
    .logo img { height: 50px; }
    
    /* Mostrar Botão e esconder Nav */
    .main-nav { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero { padding: 180px 0 80px; }
    .hero-text h1 { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    
    /* Prevenir overflow horizontal no carrossel */
    .hero-collage {
        width: 100%;
        height: 300px;
    }
    .carousel-slide {
        width: 100%;
        max-width: 320px;
        transform: rotate(0deg) scale(0.9);
    }
    .carousel-slide.active {
        transform: rotate(0deg) scale(1);
    }
    .glow-ring {
        width: 250px; height: 250px;
    }
    
    /* Ajustes da barra infinita */
    .top-marquee { height: 35px; }
    .marquee-content span { font-size: 0.85rem; padding: 0 20px; }
    
    /* Sales popup adjust */
    .sales-popup {
        left: 15px;
        width: calc(100% - 30px);
        bottom: -150px;
        padding: 12px 15px;
        gap: 10px;
    }
    .sales-popup.show {
        bottom: 80px; /* Acima do botão do Whatsapp */
    }
    .sales-popup-img { width: 35px; height: 35px; font-size: 1rem; flex-shrink: 0; }
    .sales-popup-text { font-size: 0.85rem; }
}

/* Sales Pop-up */
.sales-popup {
    position: fixed;
    bottom: -100px;
    left: 30px;
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
}

.sales-popup.show {
    bottom: 30px;
    opacity: 1;
}

.sales-popup-img {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.sales-popup-text {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.sales-popup-text strong {
    color: var(--brand-cyan);
}

.sales-time {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}
