/* ===== CSS Variables ===== */
:root {
    --dark-bg: #0D0D0D;
    --dark-card: #1A1A1A;
    --dark-hover: #252525;
    --accent: #FF5722;
    --accent-glow: #FF8A65;
    --accent-dark: #E64A19;
    --whatsapp: #25D366;
    --star: #FFB800;
    --light: #FFFFFF;
    --light-muted: #9E9E9E;
    --light-dim: #666666;
    --border-subtle: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(255, 87, 34, 0.4);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light);
    color: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--light);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 87, 34, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 87, 34, 0.5);
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--dark-card);
    color: var(--light);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid var(--whatsapp);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--whatsapp);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
    width: 100%;
    max-width: 400px;
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    background: var(--dark-bg);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-accent {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--dark-card);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--light);
    margin-bottom: 24px;
    border: 1px solid var(--border-subtle);
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--light-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--light-muted);
}

.trust-indicators i {
    color: var(--accent);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    width: 400px;
    height: 400px;
    background: var(--dark-card);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.hero-key-icon {
    font-size: 150px;
    color: var(--light-muted);
    position: relative;
    z-index: 1;
}

.hero-image-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-accent-bar {
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-bg);
}

.section-title.text-white {
    color: var(--light);
}

/* ===== Problems Section ===== */
.problems {
    background: #F5F5F5;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--light);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--accent);
    transition: var(--transition);
    cursor: pointer;
}

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

.problem-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.problem-icon i {
    font-size: 24px;
    color: var(--accent);
}

.problem-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-bg);
}

.problems-text {
    text-align: center;
    font-size: 18px;
    color: var(--light-muted);
    margin-bottom: 32px;
}

.problems .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--light);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon i {
    font-size: 32px;
    color: var(--accent);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.service-card p {
    font-size: 15px;
    color: var(--light-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* ===== How It Works ===== */
.how-it-works {
    background: #0A0A0A;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.steps-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--dark-card);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    width: 220px;
    position: relative;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--light);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 87, 34, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-icon i {
    font-size: 26px;
    color: var(--accent);
}

.step-card h4 {
    font-size: 15px;
    color: var(--light);
    font-weight: 600;
    line-height: 1.4;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
}

.step-arrow i {
    font-size: 20px;
    color: var(--light-muted);
}

.steps-highlight {
    text-align: center;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
}

.steps-highlight i {
    margin-right: 8px;
}

/* ===== Benefits Section ===== */
.benefits {
    background: var(--light);
}

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

.benefit-card {
    background: var(--light);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #eee;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 28px;
    color: var(--accent);
}

.benefit-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-bg);
}

.benefit-card p {
    font-size: 14px;
    color: var(--light-muted);
    line-height: 1.5;
}

/* ===== Reviews Section ===== */
.reviews {
    background: #F5F5F5;
}

.reviews-rating {
    text-align: center;
    font-size: 28px;
    color: var(--star);
    margin-bottom: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--light);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.review-stars {
    font-size: 16px;
    color: var(--star);
    margin-bottom: 16px;
}

.review-text {
    font-size: 15px;
    color: var(--dark-bg);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--light-muted);
}

/* ===== Contact Section ===== */
.contact {
    background: #0A0A0A;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.contact-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 30px;
    padding: 10px 20px;
    background: var(--dark-card);
    border-radius: var(--radius-full);
    font-size: 14px;
    color: var(--light);
    border: 1px solid var(--border-subtle);
}

.contact-badge i {
    color: var(--accent);
    margin-right: 8px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--light-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--light);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-dim);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

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

.contact-form .btn-primary {
    margin-top: 20px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--light-muted);
}

.trust-badges i {
    color: var(--accent);
}

/* ===== Footer ===== */
.footer {
    background: #080808;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    color: var(--light);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--light-muted);
}

.footer-contact h4,
.footer-links h4 {
    font-size: 16px;
    color: var(--light);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--light-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    color: var(--accent);
}

.contact-item.whatsapp {
    color: var(--whatsapp);
}

.contact-item i {
    width: 18px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--light-muted);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--light-dim);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image-wrapper {
        width: 300px;
        height: 300px;
    }
    
    .hero-key-icon {
        font-size: 100px;
    }
    
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid,
    .benefits-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 12px;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .benefits-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-row {
        flex-direction: column;
        align-items: center;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        padding: 0;
    }
    
    .step-card {
        width: 100%;
        max-width: 300px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .problem-card {
        padding: 20px 16px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

.whatsapp-float {
	text-decoration:none;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    animation: fadeInUp 0.6s ease-out;
}

.problem-card,
.service-card,
.benefit-card,
.review-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.problem-card:nth-child(1) { animation-delay: 0.1s; }
.problem-card:nth-child(2) { animation-delay: 0.15s; }
.problem-card:nth-child(3) { animation-delay: 0.2s; }
.problem-card:nth-child(4) { animation-delay: 0.25s; }
.problem-card:nth-child(5) { animation-delay: 0.3s; }

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.15s; }
.benefit-card:nth-child(3) { animation-delay: 0.2s; }
.benefit-card:nth-child(4) { animation-delay: 0.25s; }