:root {
    --primary: #FF6B00;
    /* Laranja Solar */
    --primary-glow: rgba(255, 107, 0, 0.4);
    --secondary: #FF8F40;
    --dark-bg: #0A0F1C;
    --dark-card: #111827;
    --text-main: #FFFFFF;
    --text-muted: #9CA3AF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-main: linear-gradient(135deg, #FF6B00 0%, #FF8F40 100%);

    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 15, 28, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 80px;
    /* Reduced since we have flex centering, but kept for header spacing */
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Background Animation - Smoke/Lava Effect */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 0;
    animation: smokeMove 15s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(255, 143, 64, 0.15) 0%, transparent 60%);
    filter: blur(60px);
    z-index: 0;
    animation: smokeMoveDelayed 18s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes smokeMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(10%, 10%) scale(1.1);
    }

    100% {
        transform: translate(-5%, 5%) scale(1);
    }
}

@keyframes smokeMoveDelayed {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-10%, -5%) scale(1.2);
    }

    100% {
        transform: translate(5%, -10%) scale(1);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    /* Ensure content is above background */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.hero-visual {
    position: relative;
}

.hero-card {
    padding: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.hero-card:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.status {
    font-size: 0.8rem;
    color: #4ADE80;
}

.message {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    max-width: 85%;
}

.received {
    background: var(--dark-card);
    border-top-left-radius: 2px;
}

.sent {
    background: var(--primary);
    color: white;
    margin-left: auto;
    border-top-right-radius: 2px;
}

.proposal-preview {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(10, 15, 28, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Generic Sections */
.section-padding {
    padding: 5rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* Details Section */
.alt-bg {
    background: linear-gradient(to bottom, var(--dark-bg), #0D1221);
}

.details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.details-visual {
    order: 2;
    position: relative;
    /* Container for floating AI cards */
}

.details-content {
    order: 1;
}

.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.check-list li i {
    color: var(--primary);
    width: 20px;
}

.badge-sm {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transition: left 0.5s ease;
}

.glass-panel:hover::before {
    left: 100%;
    transition: left 0.7s ease;
}

/* Pricing Section */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    /* Align items vertically center to handle different heights if needed */
}

.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 350px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 0, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(145deg, var(--dark-card) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 1px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.pricing-card.featured .plan-header h3 {
    color: var(--primary);
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 500;
    margin-right: 0.2rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
}

.period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-card.featured .plan-features li {
    color: var(--text-main);
}

.plan-features li i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.full-width {
    width: 100%;
    justify-content: center;
}



/* Feature Visualizations */
.reverse {
    direction: rtl;
}

.reverse>* {
    direction: ltr;
}

.chat-panel {
    align-items: flex-end;
    padding: 2rem;
    overflow-y: hidden;
}

.chat-interface {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-msg {
    padding: 1rem;
    border-radius: 12px;
    max-width: 80%;
    position: relative;
    font-size: 0.9rem;
    animation: slideUp 0.5s ease forwards;
}

.chat-msg.received {
    background: var(--dark-card);
    align-self: flex-start;
    border-top-left-radius: 2px;
}

.chat-msg.sent {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 143, 64, 0.2));
    border: 1px solid rgba(255, 107, 0, 0.3);
    align-self: flex-end;
    border-top-right-radius: 2px;
    color: white;
}

.chat-msg .time {
    display: block;
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 0.5rem;
    text-align: right;
}

/* Proposal Visual */
.proposal-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
}

.doc-preview {
    background: white;
    width: 260px;
    height: 340px;
    border-radius: 4px;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: rotate(-5deg);
    transition: var(--transition);
}

.doc-preview:hover {
    transform: rotate(0) scale(1.05);
}

.doc-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.doc-logo {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
}

.doc-lines {
    width: 80px;
    height: 10px;
    background: #E5E7EB;
    border-radius: 4px;
}

.doc-chart {
    width: 100%;
    height: 80px;
    background: #F3F4F6;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.doc-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 60%;
    background: var(--primary);
}

.btn-pdf {
    width: 100%;
    padding: 0.75rem;
    background: var(--dark-bg);
    color: white;
    border: none;
    border-radius: 6px;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    cursor: pointer;
}

/* CRM Kanban Visual */
.crm-panel {
    padding: 0 1rem;
    align-items: center;
}

.kanban-board {
    display: flex;
    gap: 1rem;
    width: 100%;
    height: 80%;
    justify-content: center;
}

.kanban-col {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 0.75rem;
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.col-head {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.kanban-card {
    background: var(--dark-card);
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    border: 1px solid var(--glass-border);
}

.kanban-card .tag {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    color: var(--primary);
    background: rgba(255, 107, 0, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    width: fit-content;
}

.kanban-card.active {
    border-left: 3px solid var(--primary);
}

.kanban-card.success {
    border-left: 3px solid #4ADE80;
}

/* Finance Dashboard Visual */
.dashboard-mock {
    width: 90%;
    background: var(--dark-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--glass-border);
}

.dash-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.dash-stat span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.dash-stat h4 {
    font-size: 1.2rem;
}

.dash-stat h4.green {
    color: #4ADE80;
}

.dash-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 5px;
}

.bar {
    width: 15%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

.bar.active {
    background: var(--gradient-main);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .ai-insight.right,
    .ai-insight.left,
    .ai-insight.bottom {
        position: relative;
        inset: auto;
        margin-top: 1rem;
        width: 100%;
        max-width: 100%;
        animation: none;
    }
}

/* AI Insight Cards */
.ai-badge {
    border-color: var(--primary);
    background: rgba(255, 107, 0, 0.15);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

.ai-insight {
    position: absolute;
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--primary);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
    max-width: 280px;
    animation: float 4s ease-in-out infinite;
}

.ai-insight.right {
    bottom: 20px;
    right: -40px;
}

.ai-insight.bottom {
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
}

.ai-insight.left {
    top: 20px;
    left: -40px;
}

.ai-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-main);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ai-icon i {
    width: 16px;
    height: 16px;
}

.ai-content span {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.ai-content p {
    font-size: 0.8rem;
    color: white;
    line-height: 1.3;
    margin: 0;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Specific adjustment for CRM to prevent overlap */
.crm-panel .kanban-board {
    height: 70%;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .reverse {
        direction: ltr;
        /* Reset direction on mobile */
    }

    .reverse>* {
        direction: ltr;
    }

    .chat-msg {
        max-width: 90%;
    }

    .kanban-board {
        flex-direction: column;
        height: auto;
    }

    .kanban-col {
        width: 100%;
    }
}

/* CTA */
.cta-section {
    position: relative;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(255, 107, 0, 0.1) 100%);
}

.cta-container {
    max-width: 800px;
}

.cta-container h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 4rem;
    background: var(--dark-bg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1rem;
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.link-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Trusted By Stats */
.trusted-by {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 2.5rem 0;
    margin-top: -60px;
    /* Overlap hero */
    position: relative;
    z-index: 10;
    background: rgba(10, 15, 28, 0.6);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stat .label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 0.75rem 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 15, 28, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem;
        flex-direction: column;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

    .hero-container,
    .details-container,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-card {
        margin-top: 2rem;
        transform: none;
    }

    .hero-card:hover {
        transform: none;
    }

    .trusted-by {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.quote-icon {
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.info strong {
    display: block;
    color: white;
    font-size: 0.95rem;
}

.info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-container {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: white;
    list-style: none;
    /* Hide default triangle */
}

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

.faq-item summary i {
    transition: transform 0.3s ease;
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.sticky-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.sticky-cta i {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .sticky-cta span {
        display: block;
        /* Keeping text visible for conversion */
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

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

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

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