:root {
    --bg-color: #FAFAFA;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --accent-color: #E6BEAE; /* Rose Soft / Champagne Gold mix */
    --accent-hover: #D4A390;
    --max-width: 1200px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.4;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    height: 80px;
    display: flex;
    align-items: center;
}

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

.logo {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

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

.hero-split {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.hero-content {
    flex: 0 0 55%;
}

.hero-animation {
    flex: 0 0 45%;
    min-height: 400px; /* Placeholder visualization */
    display: flex;
    align-items: center;
    justify-content: center;
}

.headline {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    animation: fadeInUp 1s ease-out;
}

.headline .highlight {
    color: var(--accent-hover);
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
    animation: fadeInUp 1.2s ease-out;
}

.highlights {
    list-style: none;
    margin-bottom: 50px;
}

.highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 400;
}

.highlights li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 8px;
    color: var(--accent-color);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}

.cta-button {
    display: inline-block;
    padding: 20px 48px;
    background-color: var(--accent-color);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 15px -3px rgba(230, 190, 174, 0.3);
    animation: fadeInUp 1.6s ease-out;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -5px rgba(230, 190, 174, 0.5);
}

/* Animation Styles */
.hero-animation {
    flex: 0 0 45%;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-wrapper {
    position: relative;
    width: 300px;
    height: 400px;
}

.card {
    position: absolute;
    width: 260px;
    height: 340px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: 8px;
    background: #F0F0F0;
    border-radius: 4px;
}

.card-1 {
    z-index: 3;
    transform: rotate(-3deg);
    animation: float1 6s ease-in-out infinite;
    border: 1px solid rgba(230, 190, 174, 0.2);
}

.card-2 {
    z-index: 2;
    transform: translate(30px, 20px) rotate(4deg);
    animation: float2 8s ease-in-out infinite;
    border: 1px solid rgba(230, 190, 174, 0.1);
}

.card-3 {
    z-index: 1;
    transform: translate(-30px, 40px) rotate(-6deg);
    background: #FFFFFF;
    opacity: 0.3;
}

.card:hover {
    z-index: 10;
    transform: scale(1.05) rotate(0deg) translateY(-10px) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 190, 174, 0.2) 0%, transparent 70%);
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    animation: pulseGlow 8s ease-in-out infinite;
}

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float1 {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(-1deg) translateY(-20px); }
}

@keyframes float2 {
    0%, 100% { transform: translate(30px, 20px) rotate(4deg); }
    50% { transform: translate(35px, 0px) rotate(6deg); }
}

@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Badge */
.badge-new {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(230, 190, 174, 0.2);
    color: var(--accent-hover);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    animation: fadeInUp 1.8s ease-out;
}
.stars {
    color: #FACC15;
    letter-spacing: 2px;
    font-size: 1.2rem;
}
.trust-indicators span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: #FFFFFF;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-title .highlight {
    color: var(--accent-hover);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.benefit-card {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.b-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0 100px;
    background-color: var(--bg-color);
}

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

.testimonial-card {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.t-stars {
    color: #FACC15;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.t-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.t-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

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

.t-info strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.t-info span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .headline {
        font-size: 2.8rem;
    }
    .hero-split {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        flex: 0 0 100%;
    }
    .hero-animation {
        flex: 0 0 100%;
        min-height: 200px;
    }
    .subheadline {
        margin: 0 auto 40px;
    }
    .highlights li {
        justify-content: center;
    }
    .nav-links {
        display: none; /* Simplificado para mobile */
    }
}
