/* ---------------------------------------------------
   PREMIUM LIGHT THEME (APPLE STYLE)
--------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-deep: #f5f5f7;       /* Apple light gray background */
    --bg-surface: #ffffff;    /* Pure white */
    
    --accent-primary: #0071e3;   /* Apple System Blue */
    --accent-hover: #0077ed;     /* Slightly lighter blue */
    --accent-glow: rgba(0, 113, 227, 0.2);
    
    /* Gradients */
    --brand-gradient: linear-gradient(135deg, #0071e3 0%, #4facfe 100%);
    --surface-gradient: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 245, 247, 1) 100%);
    
    /* Glassmorphism (Frosted Glass) */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(0, 0, 0, 0.05);
    
    /* Typography */
    --text-primary: #111111;   /* Almost black */
    --text-secondary: #333333; /* Dark gray for body text */
    --text-muted: #666666;     /* Medium gray for subtle text */
    
    /* Layout */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.04);
    --shadow-depth: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 30px 60px -12px rgba(0, 113, 227, 0.15);
    
    /* Animation */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-secondary);
    background-color: var(--bg-deep);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Very subtle ambient background for depth */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    background: radial-gradient(circle at top center, rgba(255,255,255,0.8) 0%, transparent 80%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', -apple-system, sans-serif;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ---------------------------------------------------
   GLASSMORPHISM UTILITIES
--------------------------------------------------- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-depth);
    overflow: hidden;
}

/* ---------------------------------------------------
   HEADER & NAVIGATION
--------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

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

.logo img {
    height: 42px;
    transition: var(--transition-fast);
}

.logo:hover img {
    transform: scale(1.02);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

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

.header-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
}

.header-socials a {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-socials a:hover {
    color: var(--accent-primary);
    transform: scale(1.1);
}

/* ---------------------------------------------------
   BUTTONS
--------------------------------------------------- */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--accent-primary);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
    color: #fff;
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    transform: scale(1.02);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline {
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    background: transparent;
    font-size: 0.9rem;
}

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

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 2.5rem;
    border-radius: 50px; /* Fully rounded pill shape */
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    background: #25D366;
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* ---------------------------------------------------
   SECTIONS & TYPOGRAPHY
--------------------------------------------------- */
.section {
    padding: 8rem 0;
    position: relative;
    z-index: 10;
}

.section-padding-top {
    padding-top: 160px;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.15em;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.15em;
}

.subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--accent-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

/* ---------------------------------------------------
   HERO SECTION
--------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 85px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    filter: brightness(1.05) contrast(0.95);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, var(--bg-deep) 100%);
    z-index: 1;
}

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

.hero-title {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* ---------------------------------------------------
   PRODUCTS GRID (INDEX)
--------------------------------------------------- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
    justify-content: center;
    gap: 3rem;
}

.product-card {
    background: var(--bg-surface);
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-depth);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #ffffff;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.product-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    flex-grow: 1;
}

.product-info a.btn-outline {
    align-self: center;
    margin-top: 1rem;
}

/* ---------------------------------------------------
   PRODUCT DETAIL SHOWCASE (FF17 / FF19)
--------------------------------------------------- */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.product-showcase-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-depth);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-showcase-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-showcase-info h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-showcase-info .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    background: var(--bg-surface);
    padding: 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.feature-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-depth);
}

.feature-list .icon-wrap {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(0, 113, 227, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.feature-list strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ---------------------------------------------------
   SPECS GRID (TECH CARDS)
--------------------------------------------------- */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.spec-card {
    background: var(--bg-surface);
    border: none;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-depth);
}

.spec-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-card h3 svg {
    color: var(--accent-primary);
}

.spec-card ul {
    list-style: none;
}

.spec-card ul li {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-secondary);
}

.spec-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.spec-card ul li strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.3rem;
}

/* ---------------------------------------------------
   FAQ ACCORDION
--------------------------------------------------- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    margin-bottom: 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-depth);
}

.faq-item details summary {
    padding: 1.5rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item details summary::-webkit-details-marker {
    display: none;
}

.faq-item details summary::after {
    content: "+";
    font-size: 1.8rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item details[open] summary::after {
    transform: rotate(45deg);
}

.faq-item details .faq-content {
    padding: 0 1.8rem 1.8rem 1.8rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* ---------------------------------------------------
   VIDEOS & GALLERY
--------------------------------------------------- */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.video-wrapper:hover {
    box-shadow: var(--shadow-depth);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    cursor: zoom-in;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-depth);
    z-index: 10;
    position: relative;
}

/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
.footer {
    background: var(--bg-surface);
    color: var(--text-secondary);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-custom {
    background: #f3f3f3;
    padding: 3rem 0 1.5rem;
}

.footer-custom-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.footer-custom-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-custom-right {
    width: 450px;
}

.footer-title {
    color: var(--accent-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-wa-btn {
    background: #1CD05D;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    margin-left: -1.2rem; /* Optical alignment */
    box-shadow: 0 4px 15px rgba(28, 208, 93, 0.3);
    transition: transform 0.2s;
}

.footer-wa-btn:hover {
    transform: scale(1.05);
    color: white;
}

.footer-info {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 500;
}
.footer-info p {
    margin-bottom: 0.2rem;
}
.footer-info a {
    color: var(--text-primary);
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
}

.footer-socials a {
    color: #000;
    transition: transform 0.2s, color 0.2s;
}

.footer-socials a:hover {
    transform: scale(1.1);
    color: var(--accent-primary);
}

.footer-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 220px;
}

.footer-bottom-custom {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}


.footer-bottom-custom a {
    color: var(--accent-primary);
    text-decoration: underline;
    display: block;
    margin-top: 0.5rem;
}

/* ---------------------------------------------------
   MOBILE RESPONSIVENESS
--------------------------------------------------- */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-primary);
    border-radius: 3px;
}

@media (max-width: 992px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }
    
    .section-padding-top {
        padding-top: 120px;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }

    .footer-custom-grid {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .footer-custom-left {
        align-items: center;
    }
    .footer-custom-right {
        width: 100%;
    }
    .footer-title {
        font-size: 1.8rem;
    }
    .footer-wa-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1.1rem;
        margin-left: 0; /* Reset optical alignment for centered mobile view */
    }
    .footer-custom {
        padding: 3rem 1rem 1.5rem;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-bottom-custom {
        margin-top: 2rem;
    }
    
    .hamburger {
        display: block;
    }

    .header-socials {
        margin-left: auto;
        margin-right: 1.5rem;
    }

    .nav-list {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 85px);
        text-align: center;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 2rem 0;
        border-top: 1px solid var(--glass-border);
        overflow-y: auto;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.4rem;
        padding: 1rem;
        display: block;
    }
    
    .nav-link::after {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons a {
        width: fit-content;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   BLOG STYLES
   ========================================================================== */

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

.blog-card {
    background: var(--surface-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 229, 255, 0.3);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    font-size: 0.9rem;
    color: var(--accent-cyan);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.blog-card h3 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cyan);
    font-weight: 600;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.read-more-btn:hover {
    opacity: 0.8;
}

/* Article Styles */
.article-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.article-hero-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.article-content {
    max-width: 750px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
}

.article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.8rem;
    position: relative;
    list-style-type: none;
}

.article-content li::before {
    content: "•";
    color: var(--accent-cyan);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.article-content a {
    color: var(--accent-cyan);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.article-content a:hover {
    color: #00b3cc;
}

/* ==========================================================================
   GALLERY STYLES
   ========================================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg-dark);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    border: 1px solid var(--border-light);
}

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 2;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
    text-align: center;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ==========================================================================
   LIGHTBOX STYLES
   ========================================================================== */

.lightbox-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    padding-top: 60px; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.9); 
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.lightbox-modal.show {
    display: block;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
    animation: zoomIn 0.3s ease;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 15px 0;
    height: 50px;
    font-size: 1.1rem;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform:scale(0.9); opacity:0} 
    to {transform:scale(1); opacity:1}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-cyan);
    text-decoration: none;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0,0,0,0.3);
    z-index: 10000;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 0;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(0, 229, 255, 0.8);
    color: #fff;
    text-decoration: none;
}

/* ==========================================================================
   VIDEO GALLERY STYLES
   ========================================================================== */

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--bg-dark);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   CAROUSEL MARQUEE
   ========================================================================== */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-deep) 0%, transparent 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-deep) 0%, transparent 100%);
}

.carousel-track {
    display: flex;
    width: calc(300px * 12 + 2rem * 12);
    animation: scrollCarousel 30s linear infinite;
    gap: 2rem;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-track img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    cursor: pointer;
}

.carousel-track img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 6 - 2rem * 6)); }
}

@media (max-width: 768px) {
    .carousel-container::before,
    .carousel-container::after {
        width: 50px;
    }
}

/* ==========================================================================
   CAROUSEL INTERACTIVE OVERRIDES
   ========================================================================== */
#home-carousel.carousel-container {
    position: relative;
    padding: 0;
}

#home-carousel .carousel-track {
    display: flex;
    gap: 1rem;
    animation: none; /* Disable auto-scroll */
    transition: transform 0.4s ease-in-out;
    width: max-content;
    padding: 20px 0;
}

#home-carousel .carousel-img {
    width: 400px; /* Smaller images */
    height: 300px; 
    object-fit: contain; /* Prevent zoom and cropping */
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    cursor: zoom-in;
    background-color: rgba(0, 0, 0, 0.02); /* Subtle background for aspect ratio differences */
}

/* Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

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

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

@media (max-width: 768px) {
    #home-carousel .carousel-img {
        width: 300px;
        height: 225px;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   DROPDOWN MENU
   ========================================================================== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    min-width: 180px;
    box-shadow: var(--shadow-depth);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--glass-border);
    list-style: none;
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content li {
    padding: 0;
}

.dropdown-content a {
    color: var(--text-secondary);
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-content a:hover {
    background-color: rgba(0, 113, 227, 0.05);
    color: var(--accent-primary);
}

/* Fix mobile menu dropdown rendering */
@media (max-width: 992px) {
    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        background: transparent;
        visibility: visible;
        opacity: 1;
        display: none;
        border: none;
        padding-left: 20px;
    }
    
    .dropdown:hover .dropdown-content,
    .dropdown.active .dropdown-content {
        display: block;
        transform: none;
    }
}


/* Ajuste de tamanho do botao do WhatsApp para mobile */
@media (max-width: 768px) {
    .btn-whatsapp {
        padding: 1.1rem 1.5rem;
        font-size: 1.05rem;
    }
}
