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

:root {
    --primary-color: #E86B8A; /* Vibrant Pink/Rose */
    --primary-light: #F9B2C3;
    --primary-dark: #1A202C; /* Escuro absoluto para o top bar */
    --secondary-color: #FFF5F7;
    --bg-color: #FAFAFA;
    --text-main: #2D3748;
    --text-light: #4A5568;
    --white: #FFFFFF;
    
    --shadow-sm: 0 2px 4px rgba(183, 110, 121, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(183, 110, 121, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(183, 110, 121, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --gradient-rose: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

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

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    color: var(--text-main);
}

p {
    color: var(--text-light);
}

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

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

/* Top Bar */
.top-bar {
    background: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(232, 107, 138, 0.15);
}
.top-bar p {
    color: var(--primary-color);
    margin: 0;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 0;
    transition: all 0.3s ease;
    background: transparent;
}
header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-rose);
    color: var(--white);
    border: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(183, 110, 121, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-light);
}
.btn-outline:hover {
    background: var(--secondary-color);
    border-color: var(--primary-color);
}

.btn-glow {
    position: relative;
    z-index: 1;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--radius-full);
    z-index: -1;
    background: inherit;
    filter: blur(15px);
    opacity: 0.5;
    transition: opacity 0.3s;
}
.btn-glow:hover::after {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Background Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}
.blob-1 {
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: var(--secondary-color);
    animation: blobBounce 10s infinite alternate ease-in-out;
}
.blob-2 {
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(230, 168, 168, 0.2);
}

@keyframes blobBounce {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(50px) scale(1.1); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid var(--primary-light);
}

.hero-content h1 {
    font-size: clamp(2.2rem, 3vw, 3.8rem);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.2;
}
.hero-content h1 span {
    color: var(--primary-color);
}
.hero-content p {
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    margin-bottom: 30px;
}

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

.hero-guarantees {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}
.hero-guarantees i {
    color: var(--primary-color);
}

/* Mockup CSS */
.hero-image {
    display: flex;
    justify-content: center;
}
.mockup-phone {
    width: 220px;
    height: 440px;
    background: var(--white);
    border: 8px solid #F3F4F6;
    border-radius: 35px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}
.mockup-phone::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 110px; height: 24px;
    background: #F3F4F6;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}
.mockup-screen {
    width: 100%; height: 100%;
    background: var(--bg-color);
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Slider CSS */
.slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.slider img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    opacity: 0;
    animation: fadeSlider 12s infinite;
}
.slider img:nth-child(1) { animation-delay: 0s; }
.slider img:nth-child(2) { animation-delay: 4s; }
.slider img:nth-child(3) { animation-delay: 8s; }

@keyframes fadeSlider {
    0%   { opacity: 0; }
    8%   { opacity: 1; }
    33%  { opacity: 1; }
    41%  { opacity: 0; }
    100% { opacity: 0; }
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.avatar-mockup {
    width: 40px; height: 40px;
    background: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.mockup-card {
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.mockup-card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.mockup-card-title h4 {
    font-size: 0.85rem;
    color: var(--text-main);
}
.mockup-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: center;
}
.mockup-time {
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}
.mockup-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-main);
}
.mockup-item span {
    font-size: 0.7rem;
    color: var(--text-light);
}

/* Features */
.features {
    padding: 60px 0;
    background: var(--white);
}
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}
.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.feature-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.feature-card:hover {
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.feature-card p {
    font-size: 0.95rem;
}

/* Audience */
.audience {
    padding: 80px 0;
}
.audience-box {
    background: var(--gradient-rose);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
}
.audience-box h2 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 2.2rem;
}
.audience-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.tag {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-color);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.stars {
    color: #FBBF24;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 30px;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.client-avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}
.client-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}
.client-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Footer CTA */
.cta-footer {
    padding: 100px 0;
    text-align: center;
    background: var(--white);
}
.cta-footer h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}
.cta-footer p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.footer-trust {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    color: var(--text-light);
    font-weight: 500;
}
.footer-trust i {
    color: var(--primary-color);
    margin-right: 5px;
}

.footer-bottom {
    background: var(--bg-color);
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #E2E8F0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-actions {
        align-items: center;
        margin: 0 auto;
    }
    .hero-guarantees {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .cta-footer h2 {
        font-size: 2rem;
    }
    .top-bar {
        font-size: 0.75rem;
    }
}
