/* Hero specific */
.hero {
    padding: var(--space-lg) 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Soft premium gradient background */
    background: radial-gradient(circle at 100% 0%, #fbf8f3 0%, var(--color-bg) 50%, #eee5d8 100%);
}

.hero::before {
    /* Decorative blob */
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 164, 93, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 767px) {
    .hero {
        min-height: 70vh;
        padding: var(--space-md) 0;
        align-items: flex-start;
        text-align: left;
    }
}

.hero__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 600px;
    flex: 1;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.hero__image {
    display: none;
    flex: 1;
    max-width: 500px;
    position: relative;
}

@media (min-width: 900px) {
    .hero__image {
        display: block;
    }
}

/* Updated Badge Style for Image */
.hero-badge {
    display: block;
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

@media (max-width: 767px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }
}

/* Feature List */
.feature-list {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 600px) {
    .feature-list {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-item {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: background 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.6);
}

.feature-icon {
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--color-white) 0%, #f0f0f0 100%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    flex-shrink: 0;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
}

/* Cards (Para quem é) */
.card {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(230, 215, 195, 0.5);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    top: 0;
}

.card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 15px 30px rgba(200, 164, 93, 0.15);
    top: -5px;
}

.card__title {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.card__title::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    margin-top: 4px;
    transition: width 0.3s;
}

.card:hover .card__title::after {
    width: 100%;
}

/* List Check */
.list-check li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.list-check li::before {
    content: '✓';
    background: var(--color-primary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    position: absolute;
    left: 0;
    top: 3px;
    font-weight: bold;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
}

@media (min-width: 768px) {
    .steps {
        flex-direction: row;
    }

    /* Connecting line */
    .steps::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 50px;
        right: 50px;
        height: 2px;
        background: #e0e0e0;
        z-index: 0;
    }
}

.step {
    flex: 1;
    text-align: center;
    padding: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}

.step:hover {
    transform: scale(1.02);
}

.step__number {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    font-weight: bold;
    font-size: 1.25rem;
    box-shadow: 0 8px 15px rgba(200, 164, 93, 0.3);
}

/* Portfolio & Images */
.portfolio-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--color-border);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 20, 16, 0.85);
    /* Dark overlay */
    color: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.portfolio-overlay::after {
    content: 'Ver site ao vivo →';
    margin-top: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    border-bottom: 1px solid white;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.section-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.section-image:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}