@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&display=swap');

:root {
    --primary: #ff751f;
    --primary-rgb: 255, 117, 31;
    --bg: #000000;
    --text: #ffffff;
    --text-muted: #a1a1a1;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --ease-apple: cubic-bezier(0.65, 0, 0.35, 1);
}

/* SCROLL PROGRESS BAR */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: white;
    z-index: 10001;
    pointer-events: none;
}

/* CUSTOM SCROLLBAR - Minimalist Chrome/Safari/Edge */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { 
    background: var(--primary); 
    border-radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html.lenis {
    height: auto;
}

.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--primary); /* As per user request: orange background */
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.5;
}

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

/* NOISE TEXTURE FOR PREMIUM FEEL */
.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.05;
    pointer-events: none;
    background-image: url('https://grainy-gradients.vercel.app/noise.svg');
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(0,0,0,0.2), transparent 50%);
    pointer-events: none;
}

/* CUSTOM CURSOR */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.cursor-circle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.3s var(--ease-apple);
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(20px);
    background: rgba(255, 117, 31, 0.4);
    border-bottom: 1px solid var(--glass-border);
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-img { height: 45px; }
.logo-img-mobile { display: none; }

.nav__list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav__link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav__link:hover { opacity: 1; }

.btn-outline {
    border: 1px solid white;
    padding: 10px 24px;
    border-radius: 100px;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    position: relative;
    z-index: 2;
}

.hero__tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.7);
}

.hero__title {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: 40px;
}

.hero__title .line {
    display: block;
    overflow: hidden;
}

.hero__title .word { display: inline-block; }

.hero__title .highlight { 
    background: linear-gradient(90deg, #ffffff, #ffccaa, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s linear infinite;
}

@keyframes gradientText {
    to { background-position: 200% center; }
}

.hero__desc {
    max-width: 550px;
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 48px;
    font-weight: 400;
}

.hero__actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: white;
    color: var(--primary);
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s var(--ease-apple), box-shadow 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-secondary {
    padding: 18px 40px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* BENTO GRID */
.section { padding: 140px 0; position: relative; z-index: 2; }

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 60px;
    letter-spacing: -0.04em;
}

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

.bento-item {
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 40px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s var(--ease-apple);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-5px);
}


.bento-content h3 { font-size: 1.8rem; margin-bottom: 12px; font-weight: 700; }
.bento-content p { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* PRODUTOS GRID */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.produto-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s var(--ease-apple);
    position: relative;
    overflow: hidden;
}

.produto-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.produto-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.produto-icon {
    width: 70px;
    height: 70px;
    color: var(--primary);
    opacity: 0.9;
}

.produto-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.produto-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.produto-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.produto-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.produto-action {
    margin-top: auto;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s var(--ease-apple), box-shadow 0.3s;
}

.btn-instagram:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

/* STATEMENT */
.statement__text {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 900;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.h-orange { color: #000; }

/* WORK FLOW STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.step__num {
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.1;
    display: block;
    margin-bottom: -10px;
}

.step h4 { font-size: 1.5rem; margin-bottom: 16px; }
.step p { color: rgba(255,255,255,0.8); }

/* CONTACT CARD */
.contact__card {
    background: #000;
    border-radius: 48px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact__info h2 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 24px; }
.contact__info p { font-size: 1.2rem; opacity: 0.7; margin-bottom: 40px; }

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 20px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
}

.form { display: grid; gap: 20px; }

.form input, .form textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 16px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form input:focus, .form textarea:focus { border-color: var(--primary); }

.btn-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary);
    z-index: 9999;
    width: 0%;
}

/* FOOTER */
.footer { 
    padding: 80px 0 40px 0; 
    border-top: 1px solid var(--glass-border); 
    background: linear-gradient(to top, rgba(255, 117, 31, 0.1), transparent);
    position: relative; 
    z-index: 2; 
}

.footer__content {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
}

.footer__slogan {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.footer__bottom { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    opacity: 0.8; 
    font-size: 1rem; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer__socials { 
    display: flex; 
    gap: 30px; 
}

.footer-link { 
    color: white; 
    text-decoration: none; 
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s var(--ease-apple), transform 0.3s;
}

.footer-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .produtos-grid { grid-template-columns: repeat(2, 1fr); }
    .contact__card { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 80px 0; }
    .section-title { font-size: 2.2rem; margin-bottom: 40px; text-align: center; }
    
    .hero__title { font-size: 2.8rem; margin-bottom: 24px; }
    .hero__desc { font-size: 1rem; margin-bottom: 32px; }
    .btn-primary { padding: 14px 28px; font-size: 1rem; text-align: center; }
    .hero__actions { flex-direction: column; width: 100%; }
    
    .nav { display: none; }
    
    .bento-grid { grid-template-columns: 1fr; gap: 16px; }
    .bento-item { height: auto; padding: 24px; min-height: 200px; border-radius: 24px; }
    .bento-content h3 { font-size: 1.4rem; }
    
    .produtos-grid { grid-template-columns: 1fr; gap: 16px; }
    .produto-card { padding: 24px; border-radius: 24px; }
    .produto-icon { width: 50px; height: 50px; }
    .produto-image { width: 60px; height: 60px; }
    .produto-title { font-size: 1.4rem; }
    .produto-desc { font-size: 0.9rem; -webkit-line-clamp: 4; }
    
    .steps { grid-template-columns: 1fr; gap: 30px; }
    .step__num { font-size: 3rem; }
    .step h4 { font-size: 1.3rem; }
    
    .stats-grid { grid-template-columns: 1fr; gap: 30px; }
    .stat-num { font-size: 3.5rem; }
    .stat-plus { font-size: 2rem; }
    
    .statement__text { font-size: 2.2rem; }
    
    .contact__card { grid-template-columns: 1fr; gap: 30px; padding: 30px 20px; border-radius: 24px; }
    .contact__info h2 { font-size: 2.2rem; margin-bottom: 16px; }
    .btn-whatsapp { padding: 14px 28px; font-size: 1rem; text-align: center; display: block; }
    
    .form input, .form textarea { padding: 16px; font-size: 0.9rem; }
    .btn-submit { padding: 16px; font-size: 1rem; }
    
    .logo-img-desktop { display: none; }
    .logo-img-mobile { display: block; height: 35px; }
    
    .footer { padding: 50px 0 30px 0; }
    .footer__slogan { font-size: 1rem; }
    .footer__bottom { flex-direction: column; gap: 20px; text-align: center; }
    .footer__socials { flex-direction: column; gap: 15px; }
}

/* ANIMATION UTILS */
.fade-up { opacity: 0; transform: translateY(30px); }
.reveal-text { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-num {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.stat-plus {
    font-size: 3rem;
    color: white;
    font-weight: 900;
}

.stat-item p {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    margin-top: 10px;
}

.service-icon {
    width: 40px;
    height: 40px;
    color: var(--text);
    margin-bottom: 20px;
    opacity: 0.8;
}

.bento-item:hover .service-icon {
    transform: scale(1.1);
    color: white;
    opacity: 1;
    transition: all 0.3s ease;
}
