:root {
    --color-primary: #111111;
    /* Pitch Black */
    --color-secondary: #1a1a1a;
    /* Dark Orbit */
    --color-accent: #d4af37;
    /* Metallic Gold */
    --color-accent-light: #f1d592;
    /* Light Gold */
    --color-text: #333333;
    --color-text-light: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-button: #d4af37;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.2);
    --spacing-container: 1200px;
}

/* Premium Visual Utilities */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
}

.gold-gradient {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
}

.text-gold {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

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

body,
html {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 10px;
    background-color: #111;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    z-index: 9999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: left 0.2s ease, opacity 0.2s ease;
    opacity: 0.9;
}

.skip-link:focus,
.skip-link:active {
    left: 10px;
    opacity: 1;
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus,
.skip-link:active {
    left: 10px;
    opacity: 1;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-button);
    color: var(--color-primary);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background-color: var(--color-accent-light);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-primary);
}

.btn-accent {
    background-color: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    box-shadow: none;
}

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

.section-padding {
    padding: 80px 0;
}

/* Header */
header {
    background-color: #ffffff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 50px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    position: relative;
    height: 60px;
    width: 200px;
    overflow: hidden;
}

.logo img {
    height: 50px;
    /* Slimmer for main header */
    width: auto;
    object-fit: contain;
}

/* Minimal Grid system to cover missing Bootstrap classes used in service pages */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    width: calc(100% + 30px);
    /* Adjust for negative margins */
}

.col-md-6,
.col-lg-8,
.col-12,
.offset-lg-2,
.text-center {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden off-canvas */
    width: 80%;
    /* Width of the drawer */
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    /* White background for modern look */
    flex-direction: column;
    padding: 80px 30px 30px;
    /* Top padding for close button space */
    gap: 20px;
    display: flex;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    z-index: 2000;
    color: var(--color-primary);
    overflow-y: auto;
    /* Allow scrolling if menu is too tall */
}

.nav-menu.active {
    right: 0;
    /* Slide in */
}

.nav-menu a {
    color: var(--color-primary);
    /* Dark text for white background */
    font-size: 1.2rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    width: 100%;
    display: block;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--color-accent);
    padding-left: 10px;
    /* Slight movement on hover */
}

.mobile-menu-btn {
    display: block;
    color: var(--color-primary);
    font-size: 24px;
    cursor: pointer;
    margin-left: auto;
}

.menu-close-btn {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
    transition: transform 0.3s;
}

.menu-close-btn:hover {
    transform: rotate(90deg);
    color: var(--color-accent);
}

/* Language Switcher */
.language-selector {
    position: relative;
    display: inline-block;
}

.current-lang {
    display: none;
    /* Hide trigger on mobile */
    cursor: pointer;
    align-items: center;
    gap: 5px;
    color: var(--color-text-light);
    font-weight: 500;
}

.current-lang:hover {
    color: var(--color-accent);
}

.lang-dropdown {
    display: flex;
    /* Always show on mobile */
    position: static;
    top: 100%;
    right: 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 5px;
    min-width: auto;
    z-index: 1000;
    padding: 0;
    justify-content: center;
    gap: 15px;
}

.language-selector:hover .lang-dropdown {
    display: block;
}

.lang-dropdown a {
    color: var(--color-primary);
    text-align: center;
    background: #f4f4f4;
    padding: 10px 20px;
    border-radius: 4px;
    width: auto;
    display: inline-block;
    font-weight: 500;
    border-bottom: none;
    /* Remove menu link border */
}

.lang-dropdown a:hover,
.lang-dropdown a:active {
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding-left: 20px;
    /* Match other links hover effect or keep simple */
}

@media (min-width: 768px) {

    /* Header layout for Desktop */
    .header-container {
        padding: 0 20px;
        justify-content: space-between;
    }

    .logo {
        position: relative;
        top: auto;
        left: auto;
        z-index: 1001;
        display: flex;
        align-items: center;
        height: 50px;
        align-self: flex-start;
        margin-top: 5px;
        width: auto;
    }

    .logo img {
        height: 100%;
        /* Respect container height */
        width: auto;
        max-height: 100%;
    }

    .mobile-menu-btn {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        padding: 0;
        background-color: transparent;
        flex-direction: row;
        gap: 30px;
        box-shadow: none;
        align-items: center;
        overflow-y: visible;
    }

    .nav-menu a {
        color: var(--color-primary);
        /* Dark text on white header */
        font-size: 1rem;
        border-bottom: none;
        padding-bottom: 0;
        width: auto;
        display: inline;
        font-weight: 500;
    }

    .nav-menu a:hover {
        color: var(--color-accent);
        padding-left: 0;
    }

    .menu-close-btn {
        display: none;
    }

    /* Language Switcher Desktop */
    .language-selector {
        margin: 0;
        width: auto;
        padding-top: 0;
        border-top: none;
    }

    .current-lang {
        display: flex;
        /* Show trigger on desktop */
    }

    .lang-dropdown {
        display: none;
        /* Hidden by default until hover */
        position: absolute;
        top: 100%;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        flex-direction: column;
        gap: 0;
        min-width: 120px;
    }

    .language-selector:hover .lang-dropdown {
        display: block;
        /* Show on hover */
    }

    .lang-dropdown a {
        background: transparent;
        text-align: left;
        padding: 10px 15px;
        font-weight: 400;
        border-radius: 0;
    }

    .lang-dropdown a:hover {
        background-color: #f5f5f5;
        padding-left: 15px;
        /* Ignore mobile padding effect */
    }
}

/* Hero Section */
.hero {
    /* Fallback/Placeholder if needed, but styling mostly with color/content */
    background-color: #fff;
    padding: 100px 0 50px;
    text-align: center;
}

.hero h1,
.hero h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.hero h1 span,
.hero h2 span {
    color: var(--color-accent);
}

.hero p {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
}

.features-highlight {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    /* Important for equal heights in flex/grid */
    border-left: 6px solid var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-box img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.cta-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-text h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    /* More modern rounded corners */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.product-info p {
    color: #666;
    margin-bottom: 25px;
    min-height: 80px;
}

/* Mission Section */
.mission-section {
    background-color: #f4f8fa;
}

.mission-content {
    max-width: 800px;
}

.mission-content h2 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: #eef2f5;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--color-text);
}

.footer-social h4 {
    margin-bottom: 20px;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.social-icons a:hover {
    background-color: var(--color-accent);
    color: #fff;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

@media (min-width: 768px) {

    .hero h1,
    .hero h2 {
        font-size: 3rem;
    }

    .feature-box {
        max-width: 200px;
    }

    .cta-container {
        flex-direction: row;
        text-align: left;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo {
        height: 65px;
        width: 220px;
    }

    .logo img {
        height: 100%;
        width: auto;
        max-height: 100%;
    }

    /* Grid columns */
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (min-width: 992px) {

    /* Header Desktop Styles */
    .mobile-menu-btn {
        display: none;
    }

    .menu-close-btn {
        display: none;
    }

    .logo {
        height: 85px;
        width: 280px;
    }

    .logo img {
        height: 100%;
        width: auto;
        max-height: 100%;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        overflow: visible;
        align-items: center;
        gap: 15px;
        max-width: none;
    }

    .nav-menu a {
        border-bottom: none;
        padding-bottom: 0;
        color: var(--color-primary);
        font-size: 0.95rem;
        white-space: nowrap;
        font-weight: 500;
    }

    .nav-menu .lang-dropdown a {
        color: var(--color-primary);
    }


    .nav-menu a:hover {
        padding-left: 0;
        color: var(--color-accent);
    }

    .language-selector {
        margin-top: 0;
        margin-left: 10px;
        border-top: none;
        padding-top: 0;
    }

    /* Grid layout */
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .offset-lg-2 {
        margin-left: 16.666667%;
    }
}



/* Accordion Styles */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion-title {
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.accordion-title:hover {
    color: var(--color-accent);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.accordion-title i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-title i {
    transform: rotate(45deg);
}

.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    /* Raised to avoid sticky CTA overlap */
    right: 20px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s;
    animation: pulse-whatsapp 2s infinite;
}

/* Range Slider Premium Styling */
.value-slider-container {
    margin: 30px 0;
}

.value-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 5px;
    outline: none;
    margin: 20px 0;
}

.value-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: var(--color-accent);
    cursor: pointer;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}

.value-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: var(--color-accent-light);
}

.slider-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
    margin-bottom: 10px;
}

.whatsapp-btn::before {
    content: "Fale Conosco";
    position: absolute;
    right: 75px;
    /* Position to the left of the button */
    background-color: #fff;
    color: var(--color-primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.whatsapp-btn:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
    animation: none;
    /* Stop pulsing on hover */
}

/* Service Page Utilities */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {

    .grid-3,
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.content-section .feature-box {
    text-align: left;
    /* Improved readability */
    max-width: 100%;
    /* Override the global max-width 200px used in homepage */
}

.text-block {
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
}

/* Premium Form Design Enhancement */
.contact-form-wrapper {
    max-width: 650px;
    margin: 0 auto 60px;
    text-align: left;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(229, 197, 118, 0.15);
    transform: translateY(-1px);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 10px;
}

.form-submit .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-submit .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#status-message {
    margin-top: 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    display: none;
    /* Hidden by default, script will show it */
}

#status-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#status-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Responsiveness Tweaks */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 25px 20px;
        margin: 0 15px 40px;
    }
}

/* ==========================================================================
   Landing Page (LP) - Golden Template Standardization
   ========================================================================== */

/* LP Header */
.lp-brand {
    background-color: #ffffff;
    padding: 10px 0;
    /* Tightened from 15px/20px */
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
}

.lp-brand .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-brand img {
    height: 60px !important;
    /* Reduced to minimize header height */
    width: auto !important;
    max-width: 280px !important;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .lp-brand img {
        height: 40px !important;
        /* Extremely compact for mobile */
        max-width: 180px !important;
    }
}

/* LP Hero Section */
.product-detail-hero {
    padding: 120px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.product-detail-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.product-detail-hero p {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* LP Section Spacing */
.content-section {
    padding: 100px 0;
}

.content-section.light-bg {
    background-color: #f8f9fa;
}

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

.section-title h2 {
    font-size: 2.8rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* LP Feature Boxes - consolidated with main feature-box styles */

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-box h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-box h3 i {
    color: var(--color-accent);
}

/* LP FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item h3 {
    padding: 20px 25px;
    background-color: #fff;
    font-size: 1.1rem;
    color: var(--color-primary);
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-item h3:hover {
    background-color: #fafafa;
}

.faq-item p {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    display: none;
}

/* LP Footer */
.lp-footer {
    padding: 40px 0;
    background-color: #111111;
    color: #ffffff;
    text-align: center;
}

.lp-footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.lp-footer a {
    color: var(--color-accent);
    text-decoration: none;
}

.lp-footer a:hover {
    text-decoration: underline;
}

/* --- Landing Page Conversion Styles --- */

.hero-ctas {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    /* Align with buttons */
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    box-shadow: none;
}

.btn-outline:hover {
    background: #fff;
    color: var(--color-primary);
    transform: translateY(-3px);
}

.promo-banner {
    padding: 60px 0;
    background-color: var(--color-secondary);
    color: #fff;
}

.secondary-bg {
    background-color: #1a1a1a;
}

.promo-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.promo-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--color-accent);
}

.promo-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    color: #fff !important;
}

/* --- Sticky Mobile CTA Premium --- */
.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}


@media (max-width: 992px) {
    .sticky-mobile-cta {
        display: block;
    }

    .product-detail-hero h1 {
        font-size: 2.2rem;
    }

    .product-detail-hero p {
        font-size: 1.2rem;
    }

    .col-md-6,
    .col-lg-8,
    .col-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .row {
        margin: 0;
        width: 100%;
        display: block !important;
        /* Force stacking of columns */
    }

    .hero-grid {
        flex-direction: column !important;
        text-align: center !important;
        gap: 40px !important;
    }

    .hero-form-container {
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important;
    }
}

/* --- Hero Form and Highlights --- */

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
}

.hero-content {
    flex: 1;
}

.hero-form-container {
    flex: 0 0 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.hero-form-container h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.hero-form-container .form-group {
    margin-bottom: 15px;
}

.hero-form-container .form-group input {
    background: rgba(255, 255, 255, 0.9);
    border: none;
}

.hero-form-container .btn-primary {
    width: 100%;
}

.highlights-bar {
    background-color: var(--color-bg-light);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Smooth scroll on iOS */
    scrollbar-width: none;
}

.highlights-bar::-webkit-scrollbar {
    display: none;
}

.highlights-container {
    display: flex;
    justify-content: flex-start;
    /* Ensure they start from left to scroll */
    align-items: center;
    flex-wrap: nowrap;
    gap: 50px;
    /* Increased gap */
    padding: 0 30px;
    width: max-content;
    /* Force width based on content */
    margin: 0 auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
    white-space: nowrap;
    flex-shrink: 0;
    /* Prevent items from shrinking */
}

.highlight-item i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

/* Hero Form and Highlights already handled above */