/* ====== FOTO PERFIL QUEM SOU EU ====== */
.about-me-photo img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(90,103,216,0.18), 0 2px 8px rgba(0,0,0,0.08);
    border: 4px solid #fff;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1), box-shadow 0.4s, border-color 0.4s;
    position: relative;
    z-index: 1;
}
.about-me-photo img:hover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 16px 48px rgba(90,103,216,0.28), 0 4px 16px rgba(0,0,0,0.12);
    border-color: #5A67D8;
    filter: brightness(1.08) saturate(1.1);
}
/* ===================== RESET E BASE ===================== */
@keyframes titleShine {
    0% {
        background-position: -100% center;
    }
    100% {
        background-position: 200% center;
    }
}
html, body {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #2d2346;
    background: #f5f3fa;
}

/* ===================== ANIMAÇÕES ===================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== VARIÁVEIS ===================== */
:root {
    --primary-color: #5A67D8;
    --secondary-color: #8C61D8;
    --background-light: #F7F8FC;
    --background-dark: #1A202C;
    --text-color-dark: #2D3748;
    --text-color-light: #fff;
    --border-radius-base: 10px;
    --shadow-base: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===================== MENU ===================== */
.menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.menu-wrapper.scrolled {
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.simple-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 20px;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.simple-nav a:hover {
    color: var(--primary-color);
}

.simple-nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.simple-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===================== MENU HAMBURGUER ===================== */
.hamburger {
    display: none;
    position: fixed;
    right: 20px;
    top: 20px;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.hamburger-label {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-left: 4px;
}

.hamburger .bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 1px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 32, 44, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    margin: 20px 0;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    opacity: 0.9;
    transform: translateY(20px);
}

.mobile-nav.active a {
    transform: translateY(0);
}

.mobile-nav a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.1);
}

/* ===================== LAYOUT BASE ===================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
section {
    padding: 80px 0;
}
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}
h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}
.btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color-light);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(90, 103, 216, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.9s;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(90, 103, 216, 0.5);
}
.btn-primary:hover::before {
    opacity: 1;
}
.btn-primary span {
    position: relative;
    z-index: 1;
}

/* ===================== HERO SECTION ===================== */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=1470&auto=format&fit=crop') no-repeat center center/cover;
    color: var(--text-color-light);
    padding: 150px 20px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(90, 103, 216, 0.1), transparent 70%);
}
.hero-content {
    position: relative;
    z-index: 1;
    animation: scaleIn 1s ease-out;
}
.hero-content h1 {
    font-size: clamp(3rem, 10vw, 6.5rem);
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(
        90deg, 
        #fff 0%,
        #e0e7ff 25%,
        #fff 50%,
        #e0e7ff 75%,
        #fff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShine 8s linear infinite;
    text-shadow: 
        0 2px 10px rgba(255, 255, 255, 0.1),
        0 4px 20px rgba(90, 103, 216, 0.2);
    position: relative;
    display: inline-block;
    padding: 0 10px;
}
.hero-content .subtitle {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 300;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}
.hero-content .tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
    line-height: 1.8;
}

/* ===================== CAROUSEL ===================== */
.services-carousel {
    background: var(--background-dark);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.carousel-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
.slides-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 300%;
}
.slide {
    width: 33.333%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: var(--text-color-light);
}
.slide i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.slide h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
    z-index: 10;
}
.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slide {
    position: relative;
    padding: 40px 20px;
}

.slide p {
    margin-top: 15px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* ===================== JORNADA ===================== */
.journey-section {
    background-color: var(--text-color-light);
}
.journey-intro {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 60px;
    font-size: 1.1rem;
}
.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.journey-timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}
.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    background-color: inherit;
}
.timeline-item:nth-child(odd) {
    left: 0;
}
.timeline-item:nth-child(even) {
    left: 50%;
}
.timeline-content {
    padding: 20px 30px;
    background: #f0f4ff;
    position: relative;
    border-radius: var(--border-radius-base);
    box-shadow: var(--shadow-base);
}
.timeline-item:nth-child(odd) .timeline-content {
    margin-left: -20px;
}
.timeline-item:nth-child(even) .timeline-content {
    margin-right: -20px;
}
.timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    right: -25px;
    top: 30px;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border: 2px solid var(--text-color-light);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    z-index: 1;
}
.timeline-icon i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}
.timeline-icon span {
    font-size: 0.8rem;
    font-weight: 700;
}
.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
    right: auto;
}

/* ===================== BENEFÍCIOS ===================== */
.benefits-section {
    background-color: var(--background-light);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.benefit-card {
    background-color: var(--text-color-light);
    padding: 30px;
    border-radius: var(--border-radius-base);
    text-align: center;
    box-shadow: var(--shadow-base);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
}
.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius-base);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.benefit-card:hover::before {
    opacity: 0.05;
}
.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color-dark);
}

/* ===================== MARKETPLACES ===================== */
.marketplace-section {
    background-color: #EBF8FF;
}
.marketplace-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.marketplace-text {
    flex: 1;
    min-width: 300px;
}
.marketplace-text h2 {
    text-align: left;
}
.marketplace-image-wrapper {
    flex: 1.5;
    min-width: 300px;
}
.marketplace-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-base);
    box-shadow: var(--shadow-base);
}

/* ===================== DEPOIMENTOS ===================== */
.testimonials-section {
    background-color: var(--text-color-light);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius-base);
    box-shadow: var(--shadow-base);
    text-align: center;
}
.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}
.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.client-info img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid var(--primary-color);
}
.client-info h4 {
    font-weight: 600;
    color: var(--text-color-dark);
}

/* ===================== CLIENTES E PARCEIROS ===================== */
.clients-partners-section {
    background-color: var(--background-light);
}
.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    justify-items: center;
    align-items: center;
    gap: 40px;
}
.logos-grid img {
    width: 100%;
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ===================== WHATSAPP FLUTUANTE ===================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-base);
    z-index: 97;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

/* ===================== PÁGINA DE CONTATO ===================== */
.contact-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--background-light) 0%, #fff 100%);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-color-dark);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius-base);
    text-align: center;
    box-shadow: var(--shadow-base);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color-dark);
}

.contact-card p {
    font-size: 1rem;
    color: var(--text-color-dark);
    opacity: 0.8;
    margin-bottom: 15px;
}

.contact-card .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card .btn-contact:hover {
    color: var(--secondary-color);
}

/* Estilo especial para o card do Instagram */
.contact-card .fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-card:hover .fa-instagram {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius-base);
    box-shadow: var(--shadow-base);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(90, 103, 216, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ===================== RODAPÉ ===================== */
footer {
    background-color: var(--background-dark);
    color: #CBD5E0;
    padding: 25px 20px;
    font-size: 0.9rem;
    position: relative;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    margin: 0;
}

.creator {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.creator:hover {
    opacity: 1;
}

/* ===================== RESPONSIVIDADE ===================== */
@media (max-width: 900px) {
    .main-nav.simple-nav {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hamburger[aria-expanded="true"] .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger[aria-expanded="true"] .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger[aria-expanded="true"] .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .container {
        padding: 0 20px;
    }
    section {
        padding: 40px 0;
    }
    .hero-section {
        min-height: 250px !important;
        padding: 80px 20px !important;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .marketplace-image-wrapper img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    /* Ajustes da página de contato */
    .contact-section {
        padding: 100px 20px 60px !important;
    }
    .contact-container {
        padding: 0;
    }
    .contact-methods {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 30px 20px;
    }

    /* Ajustes do rodapé */
    .footer-wrapper {
        justify-content: center;
        text-align: center;
    }

    .creator {
        width: 100%;
        order: 2;
    }

    .copyright {
        width: 100%;
        order: 1;
    }
}

@media screen and (max-width: 768px) {
    h1 { font-size: 4.2rem !important; }
    h2 { font-size: 2rem; }
    .hero-section { padding: 120px 20px; }
    .marketplace-content { 
        flex-direction: column; 
        text-align: center; 
    }
    .marketplace-text h2 { text-align: center; }
    
    /* Timeline Responsivo */
    .journey-timeline::after { left: 31px; }
    .timeline-item { 
        width: 100%; 
        padding-left: 70px; 
        padding-right: 25px; 
    }
    .timeline-item:nth-child(even) { left: 0%; }
    .timeline-item:nth-child(even) .timeline-icon { left: 15px; }
    .timeline-icon { left: 15px; }
    
    /* Cards responsivos */
    .benefit-card {
        margin: 0 10px;
    }
    .testimonial-card {
        margin: 0 10px;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--background-light);
    padding: 80px 0;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-intro {
    text-align: center;
    margin-bottom: 50px;
}
.faq-intro p {
    font-size: 1.1rem;
    color: var(--text-color-dark);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}
.accordion-item {
    margin-bottom: 16px;
    border-radius: var(--border-radius-base);
    background: #fff;
    box-shadow: var(--shadow-base);
    overflow: hidden;
    transition: all 0.3s ease;
}
.accordion-header {
    padding: 20px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.accordion-header:hover {
    background: var(--background-light);
}
.accordion-header h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-color-dark);
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}
.accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}
.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--primary-color);
    transition: all 0.3s ease;
}
.accordion-icon::before {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
}
.accordion-icon::after {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.accordion-body {
    padding: 0 20px 20px;
    color: var(--text-color-dark);
    opacity: 0.9;
    line-height: 1.6;
}
.accordion-item.active {
    box-shadow: var(--shadow-hover);
}
.accordion-item.active .accordion-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}
.accordion-item.active .accordion-content {
    max-height: 500px;
}

/* Infográfico */
.infographic-section {
    background: linear-gradient(135deg, var(--background-dark) 0%, #2d3748 100%);
    color: var(--text-color-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.infographic-section h2 {
    color: var(--text-color-light);
    margin-bottom: 60px;
}
.infographic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}
.infographic-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.infographic-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(90, 103, 216, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
}
.info-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}
.infographic-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Estrelas depoimentos */
.star-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 5px;
}
.star-rating i {
    font-size: 24px;
    color: #FFD700;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
