/* ========================================
   TRIA AROMAS — Premium Institutional CSS
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@200;300;400;500;600;700&display=swap');

:root {
    --primary: #C9A96E; /* Gold */
    --primary-dark: #A68B54;
    --secondary: #6A7D6B; /* Sage */
    --bg-light: #FBF9F6;
    --bg-dark: #1A1A1A;
    --text-main: #2D2D2D;
    --text-muted: #666666;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.85);
    
    --font-display: 'Cormorant Garamond', serif;
    --font-brand: 'Cormorant Garamond', serif;
    --font-main: 'Outfit', sans-serif;
    
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
}

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

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

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Font Placeholder */
@font-face {
    font-family: 'Angelic Bonques';
    src: url('fonts/AngelicBonquesFree.woff2') format('woff2'),
         url('fonts/AngelicBonquesFree.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

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

ul {
    list-style: none;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.section-line {
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin: 2rem 0;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    font-family: var(--font-brand);
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
}

.loading-tagline {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loading-fill {
    width: 0%;
    height: 100%;
    background: var(--primary);
    transition: width 0.4s ease;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: 0.4s var(--transition);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-brand {
    font-family: var(--font-brand);
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--white);
}

header.scrolled .nav-brand {
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    opacity: 0.8;
}

header.scrolled .nav-links a {
    color: var(--text-main);
    opacity: 1;
}

.nav-links a:hover {
    color: var(--primary);
    opacity: 1;
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.3s;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: 0.6s cubic-bezier(0.8, 0, 0.2, 1);
}

.mobile-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mob-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    letter-spacing: 0.1em;
}

.mob-wa {
    background: #25D366;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.nav-brand, .nav-links a {
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

header.scrolled .nav-brand, 
header.scrolled .nav-links a {
    text-shadow: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/hero-bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 25%),
                linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
    margin-left: 5%;
}

.hero-eyebrow {
    display: block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--primary);
    margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 500px;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    display: inline-block;
    transition: 0.4s;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(201, 169, 110, 0.3);
}

.btn-ghost {
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    transition: 0.4s;
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--text-main);
    border-color: var(--white);
}

/* Diferenciais Strip */
.diferenciais-strip {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.strip-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s var(--transition);
}

.strip-item:hover {
    transform: translateY(-2px);
}

.strip-icon {
    font-size: 1.1rem;
    width: 42px;
    height: 42px;
    background: #fdfdfd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #f5f5f5;
    transition: 0.3s;
}

.strip-item:hover .strip-icon {
    background: var(--white);
    box-shadow: 0 8px 20px rgba(201, 169, 110, 0.15);
    border-color: var(--primary);
}

.strip-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .strip-container {
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* Sobre Section */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.sobre-img {
    position: relative;
}

.sobre-img img {
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.sobre-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary);
    color: var(--white);
    padding: 2rem;
    border-radius: 100% 100% 0 100%;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    max-width: 150px;
    text-align: center;
    line-height: 1.4;
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    font-weight: 300;
}

.sobre-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.sobre-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Produtos Grid */
.produtos {
    padding-top: 40px;
}
.produtos-categoria {
    margin-bottom: 3rem;
}

.cat-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--text-main);
    text-align: center;
    position: relative;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.produto-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.4s var(--transition);
    border: 1px solid #f0f0f0;
}

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

.produto-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.produto-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.produto-card:hover .produto-card-img img {
    transform: scale(1.1);
}

.produto-card-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 4px;
}

.produto-card-body {
    padding: 2.5rem;
}

.produto-card-body h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.produto-card-body p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.card-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.card-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* Home Spray Section */
.home-spray-section {
    padding-top: 0;
}
.product-row-premium {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    background: #fff;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.row-img img {
    border-radius: 8px;
}

.row-main-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    margin: 1rem 0;
}

.row-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.row-item {
    margin-bottom: 2rem;
}

.row-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.row-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* CTA Section */
.cta-final {
    position: relative;
    padding: 150px 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(51,51,51,0.8) 100%),
                url('img/hero-bg.png') center/cover no-repeat;
    z-index: 0;
}

.cta-final-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-final h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    margin: 2rem 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 6rem;
}

.btn-wa-big {
    background: #25D366;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-wa-big svg {
    width: 24px;
}

.btn-insta {
    background: #E1306C;
    color: #fff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
}

.btn-wa-big:active, .btn-insta:active, .btn-primary:active {
    transform: scale(0.95);
    opacity: 0.9;
}

/* WhatsApp Mobile Safe Area */
@supports (padding: env(safe-area-inset-bottom)) {
    .whatsapp-float {
        bottom: calc(2rem + env(safe-area-inset-bottom));
    }
}

/* Accessibility: Better contrast for section labels */
.section-label {
    color: var(--primary-dark);
    font-weight: 700;
}


/* Footer */
footer {
    background: #111;
    color: #fff;
    padding: 100px 0 50px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 80px;
}

.footer-brand .brand-text {
    font-family: var(--font-brand);
    font-size: 2.2rem;
    display: block;
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
}

.footer-local {
    margin-top: 1rem;
    color: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-social svg {
    width: 28px;
    height: 28px;
    transition: 0.3s;
}

/* Cores de marca para melhor visibilidade */
.footer-social a[aria-label*="Instagram"] { color: #E1306C; }
.footer-social a[aria-label*="WhatsApp"] { color: #25D366; }

/* Ajuste de escala para equilibrar visualmente */
.footer-social a[aria-label*="WhatsApp"] svg {
    transform: scale(1.15);
}

.footer-social a:hover svg {
    transform: translateY(-3px);
    filter: brightness(1.2);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

.footer-seo {
    margin-top: 10px;
    letter-spacing: 0.1em;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float svg {
    width: 30px;
}

.wa-tooltip {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

header.scrolled .hamburger span {
    background: var(--text-main);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s var(--transition);
}

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

.reveal-fade {
    opacity: 0;
    transition: 1.5s var(--transition);
}

.reveal-fade.active {
    opacity: 1;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .sobre-grid, .product-row-premium {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nav-links, .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        margin-left: 0;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .numbers-strip {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .num-item {
        flex: 0 0 40%;
    }
}
