/* CSS Variables & Theme */
:root {
    --primary-color: #05C46B;
    /* Vibrant Green */
    --primary-dark: #03a056;
    --secondary-color: #FF3F34;
    /* Intense Red */
    --accent-color: #FFD32A;
    /* Gold/Yellow */
    --text-dark: #1E272E;
    --text-light: #F1F2F6;
    --bg-gradient: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --card-bg: rgba(255, 255, 255, 0.9);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.15);
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    background: var(--bg-gradient);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 480px;
    /* Mobile-first optimized width */
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
}

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

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

/* Component Styles */
.step-content {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Glass border */
    backdrop-filter: blur(10px);
    text-align: center;
    margin-bottom: 20px;
}

h1,
h2,
h3 {
    margin-bottom: 15px;
    line-height: 1.2;
    color: #2f3542;
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #57606f;
}

.highlight {
    font-weight: bold;
    color: var(--primary-dark);
}

.highlight-red {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Images & Placeholders */
img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 15px 0;
    box-shadow: var(--shadow-sm);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.image-placeholder {
    width: 100%;
    min-height: 250px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 20px 0;
    color: #57606f;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '📷';
    font-size: 3rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(5, 196, 107, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(5, 196, 107, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(5, 196, 107, 0);
    }
}

/* Specific Section Styles */
.report-header {
    background: #c40233;
    /* G1 red */
    color: white;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    margin: -30px -20px 20px -20px;
    border-radius: 20px 20px 0 0;
}

.feature-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 12px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-2px);
}

.feature-card.rosa {
    border-left: 5px solid #ffa502;
}

.feature-card.verde {
    border-left: 5px solid var(--primary-color);
}

.price-box {
    background: #f1f2f6;
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
}

.price-old {
    text-decoration: line-through;
    color: #a4b0be;
    font-size: 0.9rem;
}

.price-installments {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
}