/* Design System: Dark Tech Premium V5 */
:root {
    --bg-main: #020202;
    --bg-secondary: #050505;
    --primary: #f20089;
    /* Hotter Magenta */
    --primary-glow: rgba(242, 0, 137, 0.4);
    --neon-pink: #f20089;
    --whatsapp: #25D366;

    --text-main: #ffffff;
    --text-muted: #b0b0b0;

    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --card-bg-dark: #121212;
    --input-bg: #1a1a1a;
    --input-border: #333333;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    /* Thin font as requested */
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 400;
    /* Modern, thinner headings */
}

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

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

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

.text-gradient {
    color: var(--primary);
}

.full-width {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    /* Slightly rounded, modern */
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 1px;
}

.btn-magenta {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 0, 126, 0.3);
}

.btn-magenta:hover {
    background: #c2006a;
    box-shadow: 0 6px 20px rgba(230, 0, 126, 0.5);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #1ebc57;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.btn-whatsapp.big-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp.big-btn i {
    font-size: 2.4rem !important;
    /* Force larger icon size */
    margin-right: 12px;
}

.btn-whatsapp-nav {
    background: var(--whatsapp);
    color: white !important;
    padding: 8px 16px;
    font-size: 0.85rem;
    /* Slightly larger for readability */
    font-weight: 600;
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Space between icon and text */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-whatsapp-nav:hover {
    background: #1ebc57;
    transform: scale(1.05);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.4s;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo img {
    height: 32px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 400;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

/* Hero Section */
/* Hero Section */
.hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--primary);
    filter: blur(180px);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 2;
    /* Above slider overlay */
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    /* Content above everything */
}

.top-right {
    top: -200px;
    right: -200px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    font-weight: 200;
    /* Extra Light as requested */
}

/* New Highlight Style for GA VISION */
.text-highlight {
    font-weight: 600;
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
    background: linear-gradient(135deg, #ff80c0, #f20089);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Neon glossy effect */
    filter: drop-shadow(0 0 8px rgba(242, 0, 137, 0.4));
    white-space: nowrap;
    /* Prevent line break between GA and VISION */
}


.hero-text p {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
}

.store-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-label {
    font-size: 0.5rem;
    /* Extremely tiny as requested */
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
    /* Zero margin */
    margin-top: 0;
    margin-left: 2px;
    line-height: 1;
    /* Forcing tight height */
}



.store-buttons {
    display: flex;
    gap: 12px;
}

.store-btn img {
    height: 48px;
    border-radius: 6px;
    border: 1px solid transparent;
    /* No visible border by default */
    transition: 0.3s;
}

.store-btn:hover img {
    border-color: var(--primary);
    /* Neon Border on Hover */
    box-shadow: 0 0 20px var(--primary-glow);
    /* Neon Glow on Hover */
    transform: translateY(-2px);
}



.hero-visual {
    position: relative;
    perspective: 1000px;
}

/* Hero Background Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.7) 50%, rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    animation: zoomFade 24s infinite;
}

.slide:nth-child(1) {
    animation-delay: 0s;
}

.slide:nth-child(2) {
    animation-delay: 6s;
}

.slide:nth-child(3) {
    animation-delay: 12s;
}

.slide:nth-child(4) {
    animation-delay: 18s;
}

/* Adjusted for 4 slides */

@keyframes zoomFade {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    /* Stay visible */
    30% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.app-mockup {
    width: 100%;
    border-radius: 20px;
    box-shadow: -20px 30px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-visual:hover .app-mockup {
    transform: rotateY(0) rotateX(0);
}

/* SOBRE Section - Clean Dark */
.sobre {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    /* For positioning context */
}

/* Features Legend - Platform Info */
.features-legend {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #aaa;
    font-weight: 300;
}

.features-legend i {
    margin-right: 5px;
    font-size: 1rem;
    color: white;
    /* Icons pop */
}

.features-legend .sep {
    color: var(--primary);
    /* Pink separator */
    font-size: 1.2rem;
}

.section-header h2 {
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    color: white;
    font-weight: 300;
    text-shadow: 0 0 10px var(--primary-glow);
}

.glasses-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.sobre-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    .sobre-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sobre-grid {
        grid-template-columns: 1fr;
    }
}

.sobre-card {
    background: var(--card-bg-dark);
    border: 1px solid var(--glass-border);
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s;
    text-align: center;
}

.sobre-card:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.03);
}

.sobre-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 500;
}

.sobre-card p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

.sobre-card strong {
    color: white;
    font-weight: 500;
}

.highlight {
    color: var(--primary);
    font-weight: 500;
}

/* Features Grid */
.features {
    padding: 100px 0;
    /* Darker overlay (0.9) to reduce image visibility */
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('assets/images/fundo_sessao.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    /* Transparent Glass */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle glass border */
    backdrop-filter: blur(10px);
    /* Blur effect */
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
    transform: translateY(-5px);
}

/* Development Badge (Yellow Glossy) */
.dev-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 215, 0, 0.15);
    /* Yellow Glass */
    color: #ffd700;
    /* Gold Text */
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.5rem;
    /* Smaller size */
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
    letter-spacing: 0.5px;
}

/* Icon Sizing - Refined */
.icon-box {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    border-radius: 8px;
    /* Start slightly rounded */
}

.feature-card:hover .icon-box {
    background: rgba(242, 0, 137, 0.15);
    /* Glossy tint */
    box-shadow: 0 0 25px var(--primary-glow);
    /* Neon aura */
    border-radius: 50%;
    /* Spotlight effect */
}

.icon-box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Make SVGs white */
    opacity: 0.9;
    transition: 0.4s ease;
}

.feature-card:hover .icon-box img {
    filter: brightness(0) invert(1) drop-shadow(0 0 5px var(--primary));
    /* Neon edge */
    transform: scale(1.15);
    opacity: 1;
}

.icon-box i {
    font-size: 32px;
    /* Uniform icon size */
    color: white;
    opacity: 0.9;
}

.feature-card h3 {
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    min-height: 50px;
    /* Fixed height for titles to align text below */
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 300;
}

.availability {
    border-top: 1px solid var(--glass-border);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #666;
}

.availability .icons {
    font-size: 1.1rem;
    display: flex;
    gap: 10px;
    color: white;
}

.status-badge-card {
    background: var(--primary);
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 5px;
    margin-left: auto;
}

/* PLANS Section */
.plans {
    padding-top: 50px;
    background: var(--bg-secondary);
}

.plans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.plan-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    background: var(--card-bg-dark);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    text-align: center;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-header {
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.plan-header h3 {
    font-size: 0.7rem;
    color: #777;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 5px;
}

.plan-header h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.plan-card.bronze,
.plan-card.silver,
.plan-card.gold,
.plan-card.rubi {
    border-top: 3px solid var(--primary);
    background: rgba(242, 0, 137, 0.02);
    /* Very subtle pink tint */
}

.plan-card.bronze .plan-header h2,
.plan-card.silver .plan-header h2,
.plan-card.gold .plan-header h2,
.plan-card.rubi .plan-header h2 {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

.plan-logo {
    height: 60px;
    margin: 25px auto 15px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 0 5px var(--primary));
    /* Monochromatic White + Pink Glow */
    opacity: 0.9;
    transition: 0.3s;
}

/* Hover Effects - Chameleon Mode */
/* Bronze */
.plan-card.bronze:hover {
    border-color: #cd7f32;
    background: rgba(205, 127, 50, 0.05);
    box-shadow: 0 0 30px rgba(205, 127, 50, 0.15);
}

.plan-card.bronze:hover .plan-header h2 {
    color: #cd7f32;
    text-shadow: 0 0 15px rgba(205, 127, 50, 0.6);
}

.plan-card.bronze:hover .plan-logo {
    /* Force White -> Bronze Color */
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(-30deg) drop-shadow(0 0 10px #cd7f32);
    transform: scale(1.1);
    opacity: 1;
}

/* Silver */
.plan-card.silver:hover {
    border-color: #e0e0e0;
    background: rgba(224, 224, 224, 0.05);
    box-shadow: 0 0 30px rgba(224, 224, 224, 0.15);
}

.plan-card.silver:hover .plan-header h2 {
    color: #e0e0e0;
    text-shadow: 0 0 15px rgba(224, 224, 224, 0.6);
}

.plan-card.silver:hover .plan-logo {
    /* Force White -> Silver/White */
    filter: brightness(0) invert(1) grayscale(1) drop-shadow(0 0 10px #e0e0e0);
    transform: scale(1.1);
    opacity: 1;
}

/* Gold */
.plan-card.gold:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.plan-card.gold:hover .plan-header h2 {
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.plan-card.gold:hover .plan-logo {
    /* Force White -> Gold Color */
    filter: brightness(0) invert(1) sepia(1) saturate(10) hue-rotate(5deg) drop-shadow(0 0 10px #ffd700);
    transform: scale(1.1);
    opacity: 1;
}

/* Rubi (Intensify) */
.plan-card.rubi:hover {
    border-color: #ff006e;
    background: rgba(255, 0, 110, 0.05);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.2);
}

.plan-card.rubi:hover .plan-header h2 {
    color: #ff006e;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.8);
}

.plan-card.rubi:hover .plan-logo {
    filter: brightness(0) invert(1) drop-shadow(0 0 15px #ff006e);
    transform: scale(1.1);
    opacity: 1;
}

.plan-card:hover .plan-logo {
    /* Reset generic hover to allow specificity above */
    opacity: 1;
}

.plan-card.rubi .plan-logo {
    height: 40px;
    margin: 35px auto 25px;
    /* 
       Calculation for alignment:
       Standard: 25px (top) + 60px (height) + 15px (bottom) = 100px total vert space.
       Rubi: 35px (top) + 40px (height) + 25px (bottom) = 100px total vert space.
       This ensures the price element below starts at the exact same pixel position.
    */
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 10px 0;
    color: white;
}

.plan-price .currency {
    font-size: 1rem;
    color: #777;
}

.plan-price .period {
    font-size: 0.8rem;
    color: #777;
    font-weight: 300;
}

.plan-license {
    color: #8cc63f;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.plan-features-list {
    text-align: left;
    padding: 0 15px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features-list li {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #bbb;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
    font-weight: 300;
}

.plan-features-list li i.check {
    color: var(--whatsapp);
    min-width: 15px;
    margin-top: 4px;
}

.plan-features-list li i.x-mark {
    color: #ff4d4d;
    min-width: 15px;
    margin-top: 4px;
    opacity: 0.7;
}

.plan-features-list li.disabled {
    color: #555;
    text-decoration: line-through;
}

.annual-badge {
    background: rgba(255, 255, 255, 0.03);
    color: #8cc63f;
    padding: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    border-top: 1px solid var(--glass-border);
    margin-top: auto;
    letter-spacing: 0.5px;
}

.btn-magenta.full-width {
    width: 85%;
    margin: 0 auto 20px;
    border-radius: 6px;
}

/* FAQ - Accordion */
.faq {
    background: var(--bg-main);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

/* Modern Floating Glass Accordion */
.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    /* Dark Glass Base */
    margin-bottom: 15px;
    /* Separation between cards */
    border-radius: 8px;
    overflow: hidden;
    /* Contains content */
    transition: 0.3s;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: transparent;
    /* Header merges with card */
    border: none;
    padding: 20px 25px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    /* Reduced from 0.95rem */
    /* Slightly larger */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    letter-spacing: 0.5px;
    text-transform: none;
    /* Modern look usually isn't all-caps, user reference seemed normal case? adjusted to title case implicitly via text */
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
    /* Subtle highlight */
    color: var(--primary);
    /* Pink highlight on hover */
}

.accordion-header.active {
    background: rgba(242, 0, 137, 0.1);
    /* Pink tint when open */
    color: var(--primary);
    border-bottom: 1px solid rgba(242, 0, 137, 0.2);
    /* Separator */
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    transition: 0.3s;
}

.accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
    padding: 0 25px;
    /* Collapsed: 0 vertical padding */
    background: transparent;
}

.accordion-header.active+.accordion-content {
    padding-top: 20px;
    padding-bottom: 25px;
    /* Open: Visible padding */
}


/* CONTACT - Dark Card Style (User Reference) */
.contact {
    background: var(--bg-secondary);
}

.contact-container {
    max-width: 1200px;
    /* Increased from 900px */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: #0f0f0f;
    /* Specific Dark BG from reference */
    padding: 60px;
    border-radius: 12px;
    border: 1px solid #1f1f1f;
}

/* Contact Left Side */
.contact-text {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Full height to align with form */
}

.contact-text p {
    color: #a0a0a0;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 300;
}

.contact-text a {
    color: white;
    text-decoration: underline;
    text-decoration-color: var(--primary);
}

.contact-quote {
    color: white;
    font-style: italic;
    border-left: 2px solid var(--primary);
    padding-left: 15px;
    margin: 20px 0;
}

.btn-whatsapp-large {
    background: rgba(37, 211, 102, 0.15);
    /* Transparent Green Glass */
    color: #25d366;
    /* Bright Green Text */
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-weight: 600;
    margin-top: auto;
    /* Push to bottom for alignment */
    border-radius: 6px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    border: 1px solid rgba(37, 211, 102, 0.3);
    /* Glass Border */
    text-decoration: none !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.1);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

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

.btn-whatsapp-large:hover::before {
    left: 100%;
}

.btn-whatsapp-large:hover {
    background: rgba(37, 211, 102, 0.25);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.3);
    color: #fff;
    border-color: #25d366;
}

.btn-whatsapp-large i {
    font-size: 1.8rem;
    margin-right: 10px;
}

/* Contact Form - Dark Inputs */
.contact-form-clean {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #151515;
    /* Dark input bg */
    border: 1px solid #2a2a2a;
    /* Subtle border */
    padding: 15px;
    color: white;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #1a1a1a;
}

/* Restoring broken selector */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Custom Form Labels & Radio */
.form-group label {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 400;
}

.radio-options {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    cursor: pointer;
    font-size: 0.9rem;
}

.radio-label input {
    display: none;
    /* Hide default radio */
}

.custom-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #555;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: 0.3s;
}

.radio-label input:checked+.custom-radio {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

.radio-label input:checked+.custom-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-magenta-solid {
    background: var(--primary);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    letter-spacing: 1px;
    width: 100%;
    transition: 0.3s;
}

.btn-magenta-solid:hover {
    background: #c2006a;
}


/* Footer Refined */
/* Footer MDBootstrap Style */
.footer {
    padding: 0 0 30px;
    background: rgba(10, 10, 10, 0.7);
    /* Glossy Dark Background */
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    color: #a0a0a0;
    position: relative;
    z-index: 10;
}

/* Social Bar */
.footer-social-bar {
    background: var(--primary);
    padding: 15px 0;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 50px;
    /* Space before main footer */
}

.social-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.social-icons a {
    color: white;
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #fff;
    opacity: 0.8;
}

/* Main Footer Grid */
.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    /* 4 Columns */
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        /* 2 cols on tablet */
    }
}

@media (max-width: 600px) {
    .social-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        /* 1 col on mobile */
        text-align: center;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-heading {
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Logo in heading */
.footer-logo-mini {
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo-large {
    height: 45px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    display: block;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 0;
}

.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 5px;
    transition: 0.3s;
    display: block;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 5px;
    /* Slight movement on hover */
}

.contact-item {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #a0a0a0;
}

.contact-item i {
    width: 20px;
    /* Fixed width for alignment */
    text-align: center;
    color: white;
    font-size: 0.9rem;
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    color: #666;
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.2);
    padding-bottom: 20px;
}

.copyright strong {
    color: #ccc;
}





/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    /* Dark overlay */
    backdrop-filter: blur(5px);
    overflow: auto;
    align-items: center;
    /* Center flex */
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #121212;
    margin: auto;
    padding: 30px;
    border: 1px solid #333;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    align-self: flex-end;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: var(--bg-main);
    position: relative;
    overflow: hidden;
    /* Prevent scrollbars only if necessary, but lightbox is fixed */
}

/* Gallery Carousel */
.gallery-slider {
    position: relative;
    padding: 0 40px;
    /* Space for arrows */
}

.gallery-wrapper {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 15px;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 10px);
    /* 3 Items Visible (minus gap approx) */
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    backdrop-filter: blur(5px);
    z-index: 5;
}

.gallery-arrow:hover {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

.gallery-arrow.prev {
    left: 0;
}

.gallery-arrow.next {
    right: 0;
}

@media (max-width: 900px) {
    .gallery-item {
        flex: 0 0 calc(50% - 10px);
        /* 2 Items on tablet */
    }
}

@media (max-width: 600px) {
    .gallery-item {
        flex: 0 0 100%;
        /* 1 Item on mobile */
    }

    .gallery-slider {
        padding: 0;
    }

    .gallery-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .gallery-arrow.prev {
        left: 10px;
    }

    .gallery-arrow.next {
        right: 10px;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    /* Black background */
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s;
}

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

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

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

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        /* Smaller items on mobile */
    }

    .gallery-item {
        height: 200px;
    }

    .lightbox-content {
        width: 95%;
    }
}

.close-modal:hover {
    color: var(--primary);
}

.modal-content h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.modal-body {
    overflow-y: auto;
    padding-right: 10px;
    text-align: left;
    color: #ccc;
    line-height: 1.7;
    font-size: 0.95rem;
}

.modal-body h3 {
    color: white;
    margin: 25px 0 15px;
    font-size: 1.2rem;
}

.modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-body li {
    margin-bottom: 5px;
}

.modal-body p {
    margin-bottom: 15px;
}

/* Custom Scrollbar for Modal */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive Mobile Polish */

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
    .container {
        width: 90%;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-buttons {
        align-items: center;
        /* Center buttons on mobile/tablet */
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        margin: 0 auto 30px;
        /* Center paragraph */
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    /* Mobile Navigation - Glass Dark */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        /* Deep dark */
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        /* Center items vertically */
        padding-top: 0;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.5rem;
        /* Larger touch targets */
        margin: 15px 0;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
}

/* Tablet Portrait & Large Phones */
@media (max-width: 768px) {

    .section-padding,
    .hero-section,
    .sobre,
    .features,
    .plans {
        padding: 60px 0;
        /* Reduced padding */
    }

    .hero-section {
        padding-top: 140px;
        /* Adjust for header */
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        gap: 30px;
    }
}

/* Mobile Phones */
@media (max-width: 600px) {

    .plans-grid,
    .sobre-grid,
    .features-grid {
        grid-template-columns: 1fr;
        /* Force single column */
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        gap: 20px;
        align-items: center;
        /* Center flex buttons */
        width: 100%;
    }

    .btn-whatsapp.big-btn {
        width: 100%;
        max-width: 320px;
        font-size: 0.9rem;
        justify-content: center;
        /* Center icon/text */
    }

    .store-buttons-wrapper {
        align-items: center;
        /* Center store label and buttons */
    }

    .store-buttons {
        justify-content: center;
    }

    .store-btn img {
        height: 42px;
        /* Slightly smaller store buttons */
    }

    .modal-content {
        padding: 20px;
        width: 95%;
    }

    /* Footer Centering */
    .footer-content {
        text-align: center;
    }

    .footer-col {
        align-items: center;
        /* Center flex items in footer */
    }

    .footer-heading {
        justify-content: center;
        /* Center aligned heading icon/text */
    }

    .contact-item {
        justify-content: center;
        /* Center contact icons/text */
    }

    .footer-links {
        justify-content: center;
        /* Center legal links */
    }

    .feature-card {
        align-items: center;
        text-align: center;
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}