:root {
    --primary-color: #ff007f;
    --primary-glow: #ff007f88;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --card-bg: #141414;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --font-main: 'Montserrat', sans-serif;
}

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

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

html {
    scroll-behavior: smooth;
}

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

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

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

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

.bg-darker {
    background-color: var(--bg-darker);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-title.left {
    text-align: left;
    margin-bottom: 30px;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
}

.hero-logo img {
    max-width: 200px;
    margin-bottom: 30px;
}

.headline {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* BUTTONS */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-button.large {
    font-size: 1.4rem;
    padding: 20px 50px;
}

.cta-button.outline {
    background-color: transparent;
    color: var(--text-light);
    box-shadow: none;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 40px var(--primary-glow);
}

.cta-button.outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-glow);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 0, 127, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 127, 0);
    }
}

.trust-badges {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-badges span i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* GRID SYSTEM */
.grid {
    display: grid;
    gap: 30px;
}

/* PROBLEM CARDS */
.cards {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

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

/* SOLUTION SECTION */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.solution-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefits-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.image-placeholder img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 2px solid rgba(255,0,127,0.3);
}

/* PORTFOLIO */
.portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* TESTIMONIALS */
.testimonial-card {
    background-color: var(--bg-darker);
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
}

.stars {
    color: #ffb400;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-weight: 800;
    color: var(--text-muted);
}

/* PRICING */
.offer-banner {
    background-color: rgba(255, 0, 127, 0.1);
    border: 1px solid var(--primary-color);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 50px;
}

.urgency-text {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.2rem;
}

.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.pricing-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255,0,127,0.2);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price span {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.pricing-card .cta-button {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
}

/* FOOTER */
.footer {
    padding: 100px 0 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.final-cta-text {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.copyright {
    margin-top: 80px;
    font-size: 0.9rem !important;
}

/* STICKY WHATSAPP */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .section-title.left {
        text-align: center;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .final-cta-text {
        font-size: 2rem;
    }
}
