/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--medium-purple) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(163, 133, 215, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(242, 200, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-text .accent {
    color: var(--accent-yellow);
    position: relative;
    display: inline-block;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--cream);
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.hero-bullets li i {
    color: var(--accent-yellow);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    background-color: var(--cream);
    color: var(--deep-purple);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(163, 133, 215, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(242, 200, 0, 0.1) 0%, transparent 50%);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--accent-yellow);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--medium-purple), var(--accent-yellow));
    mix-blend-mode: multiply;
    opacity: 0.7;
    z-index: 1;
}

.about-image img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--medium-purple);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    font-family: 'Krona One', sans-serif;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.about-highlights {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--medium-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    flex-shrink: 0;
    transition: var(--transition);
}

.highlight-icon:hover {
    transform: rotateZ(30deg);
    transform: rotateZ(30deg);
}

.highlight-content h4 {
    color: var(--medium-purple);
    margin-bottom: 0.5rem;
}

/* Services Section */
.services {
    background-color: var(--deep-purple);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="%23A385D7" stroke-width="0.3" /></svg>');
    background-size: 40px 40px;
    opacity: 0.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--medium-purple);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--accent-yellow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    left: 0;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(242, 200, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--accent-yellow);
    font-size: 0.8rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.service-cta {
    color: var(--light-lilac);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-cta:hover {
    color: var(--accent-yellow);
    gap: 0.8rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--medium-purple) 0%, var(--deep-purple) 100%);
    background-size: 200% 200%;
    animation: gradientMove 8s ease-in-out infinite;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(242, 200, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(163, 133, 215, 0.1) 0%, transparent 50%);
    animation: glowMove 12s ease-in-out infinite alternate;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--cream);
}

/* 🎨 Animação suave do gradiente */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* ✨ Movimento leve dos brilhos radiais */
@keyframes glowMove {
    0% {
        background-position: 20% 80%, 80% 20%;
    }

    50% {
        background-position: 30% 70%, 70% 30%;
    }

    100% {
        background-position: 20% 120%, 80% 90%;
    }
}