.elementor-317 .elementor-element.elementor-element-59584c43{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-8eb2a6e *//* Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333333;
    background-color: #f8f9fa;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Grid Background - Agora específico para a seção hero */
.grid-background {
    display: none; /* Escondemos o elemento global */
}

/* Partículas Flutuantes - Agora específicas para a seção hero */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background-color: #8a2be2;
    border-radius: 50%;
    pointer-events: none;
    transition: opacity 0.5s ease;
    box-shadow: 0 0 5px rgba(138, 43, 226, 0.3);
    mix-blend-mode: screen;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Seção Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    background-color: #f8f9fa;
    padding-bottom: 100px;
}

/* Máscara de desfoque para o grid na seção hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Conteúdo do Hero */
.hero-content {
    flex: 1;
    max-width: 600px;
}

.logo {
    margin-bottom: 30px;
}

.logo img {
    max-width: 200px;
    height: auto;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333333;
}

.subheadline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.cta-button:hover {
    background-color: #0055b3;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* Imagem do Hero */
.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    display: block;
}

/* Círculos Brilhantes */
.glow-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.3) 0%, rgba(255, 107, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulse 4s infinite ease-in-out;
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, rgba(138, 43, 226, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    top: 0%;
    right: -80px;
    filter: blur(40px);
    animation: float-glow 8s infinite ease-in-out;
    pointer-events: none;
}

@keyframes float-glow {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* Badge */
.badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333333;
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 400;
    z-index: 2;
    white-space: nowrap;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

/* Seção de Desafios */
.challenges {
    padding: 120px 0 100px;
    background-color: #f8f9fa;
    position: relative;
    z-index: 0;
    overflow: visible;
    margin-top: -100px;
}

/* Elementos decorativos */
.challenges::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.03) 0%, rgba(0, 102, 204, 0) 70%);
    z-index: 0;
}

.challenges::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.03) 0%, rgba(138, 43, 226, 0) 70%);
    z-index: 0;
}

.challenges-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid #444444;
    margin-bottom: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.badge-pill .dot {
    width: 10px;
    height: 10px;
    background-color: #8a2be2; /* Cor roxa */
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #333333;
    position: relative;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #555555;
    max-width: 700px;
    margin: 0 auto;
}

/* Cards de desafios */
.challenges-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.challenge-card {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background-color: #ffffff;
    padding-top: 20px;
    margin-top: 30px;
}

.challenge-card::before {
    content: attr(data-number);
    position: absolute;
    top: -30px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(138, 43, 226, 0.15) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    z-index: 1;
    line-height: 1;
}

.challenge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.challenge-card:hover .card-bg {
    opacity: 1;
}

.card-content {
    display: flex;
    padding: 35px 30px;
    position: relative;
    z-index: 2;
}

.card-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #0066cc;
    transition: all 0.3s ease;
}

.challenge-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
    color: #8a2be2;
}

.card-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333333;
}

.card-text p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(138, 43, 226, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

/* Seção de conclusão */
.solution-teaser {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    color: #333333;
    position: relative;
    padding-top: 40px;
    z-index: 2;
}

.solution-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #8a2be2);
    border-radius: 2px;
    margin-bottom: 30px;
}

.solution-teaser strong {
    color: #0066cc;
    position: relative;
}

/* Seção de Metodologia */
.methodology {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.methodology-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.methodology-glow {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(138, 43, 226, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.methodology .container {
    position: relative;
    z-index: 2;
}

.methodology-header {
    text-align: center;
    margin-bottom: 50px;
}

.methodology .badge-pill {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.methodology .section-title {
    color: #ffffff;
    margin-bottom: 25px;
}

.methodology .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.methodology-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.methodology-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 16px;
    padding: 25px 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.methodology-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}



.methodology-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(0, 102, 204, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #8a2be2;
    transition: all 0.3s ease;
}

.methodology-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.4) 0%, rgba(0, 102, 204, 0.4) 100%);
    color: #ffffff;
}

.methodology-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.methodology-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.methodology-card .card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: 0.5s;
}

.methodology-card:hover .card-shine {
    left: 100%;
}

.methodology-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-button-dark {
    display: inline-block;
    background: linear-gradient(135deg, #8a2be2 0%, #0066cc 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-button-dark:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

/* Seção Dashboard */
.dashboard {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.05) 0%, rgba(138, 43, 226, 0) 50%);
    pointer-events: none;
}

.dashboard-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.dashboard-text {
    flex: 1;
    max-width: 550px;
}

.dashboard .section-title {
    margin-bottom: 20px;
}

.dashboard .section-subtitle {
    font-size: 1.2rem;
    color: #555555;
    line-height: 1.6;
}

.dashboard .section-subtitle strong {
    color: #0066cc;
}

.dashboard-image {
    flex: 1;
    position: relative;
    transform: translateY(80px);
    opacity: 1;
    transition: transform 1.2s ease-out, opacity 1.2s ease;
    will-change: transform, opacity;
}

.dashboard-image.active {
    transform: translateY(0);
    opacity: 1;
}

.dashboard-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.dashboard-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Borda da Seção */
.section-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #8a2be2, #0066cc);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
    z-index: 3;
}

/* Seção Quem Sou Eu */
.about-me {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.about-glow {
    position: absolute;
    top: 30%;
    right: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, rgba(138, 43, 226, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 0 0 320px;
    position: relative;
    transform: translateX(-50px);
    opacity: 1;
    transition: transform 1.2s ease-out, opacity 1.2s ease;
    will-change: transform, opacity;
}

.about-image.active {
    transform: translateX(0);
    opacity: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-text {
    flex: 1;
    transform: translateX(50px);
    opacity: 1;
    transition: transform 1.2s ease-out, opacity 1.2s ease;
    transition-delay: 0.2s;
    will-change: transform, opacity;
}

.about-text.active {
    transform: translateX(0);
    opacity: 1;
}

.about-me .badge-pill {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.about-me .section-title {
    color: #ffffff;
    margin-bottom: 30px;
}

.about-description p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Seção Visão 360° */
.vision {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Seção Checkpoints */
.checkpoints {
    padding: 100px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.checkpoints-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    transform: translateY(30px);
    opacity: 1;
    transition: transform 1s ease-out, opacity 1s ease;
}

.checkpoints-header.active {
    transform: translateY(0);
    opacity: 1;
}

.checkpoints .badge-pill {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.checkpoints .badge-pill .dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #8a2be2 0%, #0066cc 100%);
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

.checkpoints .section-title {
    margin-bottom: 20px;
    font-size: 2.5rem;
    line-height: 1.3;
    color: #ffffff;
}

.checkpoints-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.checkpoint-item {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    transform: translateY(30px);
    opacity: 1;
}

.checkpoint-item.active {
    transform: translateY(0);
    opacity: 1;
}

.checkpoint-item:hover {
    transform: translateY(-3px);
}

.checkpoint-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #8a2be2 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(138, 43, 226, 0.3);
}

.checkpoint-icon svg {
    width: 14px;
    height: 14px;
}

.checkpoint-text {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
}

.checkpoints-cta {
    text-align: center;
    margin-top: 40px;
    transform: translateY(30px);
    opacity: 1;
    transition: transform 1s ease-out, opacity 1s ease;
    transition-delay: 0.6s;
}

.checkpoints-cta.active {
    transform: translateY(0);
    opacity: 1;
}

.checkpoints .cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #8a2be2 0%, #0066cc 100%);
    color: #ffffff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.checkpoints .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 102, 204, 0.4);
}

/* Seção FAQ */
.faq {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    transform: translateY(30px);
    opacity: 1;
    transition: transform 1s ease-out, opacity 1s ease;
}

.faq-header.active {
    transform: translateY(0);
    opacity: 1;
}

.faq .section-title {
    margin-bottom: 20px;
    color: #333333;
}

.faq .section-subtitle {
    font-size: 1.2rem;
    color: #555555;
    line-height: 1.6;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transform: translateY(30px);
    opacity: 1;
    transition: transform 0.8s ease-out, opacity 0.8s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    transform: translateY(0);
    opacity: 1;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(138, 43, 226, 0.03);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333333;
    margin: 0;
    padding-right: 20px;
    line-height: 1.5;
}

.faq-toggle {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    transition: all 0.3s ease;
}

.faq-item.expanded .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(0, 102, 204, 0.2) 100%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 30px;
}

.faq-item.expanded .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    margin: 0;
    color: #555555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-cta {
    flex: 1;
    max-width: 450px;
}

.footer-cta h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-cta p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #0066cc;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.footer-contact {
    flex: 0 0 auto;
}

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: right;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: flex-end;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon svg {
    color: #0066cc;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.copyright p, .credits p {
    margin: 0;
}

.credits a {
    color: rgba(0, 102, 204, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.credits a:hover {
    color: #8a2be2;
    text-decoration: underline;
}

.vision-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.vision-text {
    flex: 1;
    max-width: 550px;
    transform: translateY(30px);
    opacity: 1;
    transition: transform 1s ease-out, opacity 1s ease;
}

.vision-text.active {
    transform: translateY(0);
    opacity: 1;
}

.badge-pill.dark {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.badge-pill.dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(138, 43, 226, 0), rgba(138, 43, 226, 0.8), rgba(138, 43, 226, 0));
    border-radius: 30px 30px 0 0;
}

.vision .section-title {
    margin-bottom: 20px;
    color: #333333;
}

.vision .section-subtitle {
    font-size: 1.2rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.vision .section-subtitle strong {
    color: #0066cc;
}

.vision .cta-button {
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

/* Animação Orbital */
.vision-animation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.8);
    opacity: 1;
    transition: transform 1s ease-out, opacity 1s ease;
    transition-delay: 0.3s;
}

.vision-animation.active {
    transform: scale(1);
    opacity: 1;
}

.circle-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.circle-orbit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(138, 43, 226, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.orbit-item {
    position: absolute;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: counter-rotate 30s linear infinite;
}

@keyframes counter-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

.orbit-item[data-position="0"] {
    top: -40px;
    left: calc(50% - 40px);
}

.orbit-item[data-position="1"] {
    top: calc(50% - 40px);
    right: -40px;
}

.orbit-item[data-position="2"] {
    bottom: -40px;
    left: calc(50% - 40px);
}

.orbit-item[data-position="3"] {
    top: calc(50% - 40px);
    left: -40px;
}

.orbit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0e6ff 0%, #e6f0ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #0066cc;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.orbit-item:hover .orbit-icon {
    background: linear-gradient(135deg, #e6d9ff 0%, #d9e6ff 100%);
    transform: scale(1.1);
    color: #8a2be2;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.2);
}

.orbit-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333333;
    white-space: nowrap;
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8a2be2 0%, #0066cc 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
    z-index: 2;
}

.solution-teaser strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(0, 102, 204, 0.3);
}



/* Media Queries para Responsividade */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    .hero .container {
        gap: 30px;
    }
    
    .glow-circle {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .hero-content {
        order: 1;
        max-width: 100%;
    }
    
    .hero-image {
        order: 2;
        margin-top: 40px;
        position: relative;
    }
    
    .hero-image::after {
        width: 450px;
        height: 450px;
        top: -20%;
        right: -40%;
        transform: translate(0, 0);
        z-index: 0;
        background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, rgba(138, 43, 226, 0) 70%);
    }
    
    /* Responsividade para seção de metodologia */
    .methodology {
        padding: 60px 0 40px;
    }
    
    .methodology-header {
        margin-bottom: 30px;
    }
    
    .methodology-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        gap: 15px;
    }
    
    .methodology-card {
        padding: 20px 15px;
    }
    
    .methodology-glow {
        width: 300px;
        height: 300px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .methodology-cta {
        margin-top: 30px;
    }
    
    .cta-button-dark {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    /* Responsividade para seção de dashboard */
    .dashboard {
        padding: 70px 0;
    }
    
    .dashboard-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .dashboard-text {
        max-width: 100%;
        text-align: center;
    }
    
    .dashboard-image {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .dashboard-image img {
        transform: perspective(1000px) rotateY(0deg);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    /* Responsividade para seção Quem Sou Eu */
    
    .about-me {
        padding: 60px 0 80px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image {
        flex: 0 0 auto;
        max-width: 280px;
        margin: 0 auto;
        order: 1;
    }
    
    .about-text {
        text-align: center;
        order: 2;
    }
    
    .about-me .badge-pill {
        margin: 0 auto 20px;
        display: inline-flex;
    }
    
    .about-glow {
        width: 400px;
        height: 400px;
        top: 50%;
        right: 50%;
        transform: translate(50%, -50%);
    }
    
    /* Responsividade para footer */
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-cta {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-cta h2 {
        font-size: 1.4rem;
    }
    
    .footer-cta p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .footer-contact {
        text-align: center;
        width: 100%;
    }
    
    .footer-contact h3 {
        text-align: center;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: 15px;
    }
    
    /* Responsividade para seção FAQ */
    .faq {
        padding: 70px 0;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq .section-title {
        font-size: 2rem;
    }
    
    .faq .section-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
    
    /* Responsividade para seção Visão */
    .vision {
        padding: 70px 0;
    }
    
    .vision-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .vision-text {
        max-width: 100%;
        text-align: center;
    }
    
    .badge-pill.dark {
        margin: 0 auto 20px;
        display: inline-block;
    }
    
    .vision .cta-button {
        margin: 20px auto 0;
        display: inline-block;
    }
    
    .circle-container {
        width: 320px;
        height: 320px;
        margin: 0 auto;
    }
    
    /* Responsividade para seção Checkpoints */
    .checkpoints {
        padding: 70px 0;
    }
    
    .checkpoints-header {
        margin-bottom: 40px;
    }
    
    .checkpoints .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .checkpoints-list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .checkpoint-text {
        font-size: 1rem;
    }
    
    .checkpoints-cta {
        margin-top: 30px;
    }
    
    /* Responsividade para seção de desafios */
    .challenges {
        padding: 80px 0 60px;
    }
    
    .challenges-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .challenges-cards {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .card-content {
        padding: 25px 20px;
    }
    
    .logo {
        display: flex;
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    .glow-circle {
        width: 250px;
        height: 250px;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .logo img {
        max-width: 150px;
    }
    
    .subheadline {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .glow-circle {
        width: 200px;
        height: 200px;
    }
    
    /* Responsividade para seção de metodologia em telas muito pequenas */
    .methodology {
        padding: 60px 0 40px;
    }
    
    .methodology .section-title {
        font-size: 2rem;
    }
    
    .methodology .section-subtitle {
        font-size: 1rem;
    }
    
    .methodology-card {
        padding: 25px 20px;
    }
    
    .methodology-card h3 {
        font-size: 1.3rem;
    }
    
    .methodology-card .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .methodology-glow {
        width: 300px;
        height: 300px;
    }
    
    /* Responsividade para seção Quem Sou Eu em telas muito pequenas */
    
    .about-me {
        padding: 50px 0 60px;
    }
    
    .about-image {
        max-width: 240px;
    }
    
    .about-me .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .about-description p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .about-glow {
        width: 300px;
        height: 300px;
    }
    
    /* Responsividade para footer em telas muito pequenas */
    .footer {
        padding: 25px 0 15px;
    }
    
    .footer-cta h2 {
        font-size: 1.2rem;
    }
    
    .footer-cta p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .footer-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .footer-contact h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-bottom {
        font-size: 0.7rem;
        padding-top: 12px;
    }
    
    /* Responsividade para seção FAQ em telas muito pequenas */
    .faq {
        padding: 50px 0;
    }
    
    .faq-header {
        margin-bottom: 30px;
    }
    
    .faq .section-title {
        font-size: 1.8rem;
    }
    
    .faq .section-subtitle {
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-toggle {
        width: 24px;
        height: 24px;
    }
    
    .faq-toggle svg {
        width: 18px;
        height: 18px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.expanded .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Responsividade para seção Visão em telas muito pequenas */
    .vision {
        padding: 50px 0;
    }
    
    .vision .section-title {
        font-size: 2rem;
    }
    
    .vision .section-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .badge-pill.dark {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .circle-container {
        width: 280px;
        height: 280px;
    }
    
    .circle-center {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    
    .orbit-icon {
        width: 50px;
        height: 50px;
    }
    
    /* Responsividade para seção Checkpoints em telas muito pequenas */
    .checkpoints {
        padding: 50px 0;
    }
    
    .checkpoints .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .checkpoints .badge-pill {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .checkpoint-icon {
        width: 24px;
        height: 24px;
        margin-right: 12px;
    }
    
    .checkpoint-icon svg {
        width: 12px;
        height: 12px;
    }
    
    .checkpoint-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .checkpoints-cta {
        margin-top: 25px;
    }
    
    .checkpoints .cta-button {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 6px 0;
    }
    
    /* Responsividade para seção de desafios */
    .challenges {
        padding: 60px 0 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .badge-pill {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .badge-pill .dot {
        width: 8px;
        height: 8px;
    }
    
    .card-content {
        padding: 20px 15px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .card-text h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .card-text p {
        font-size: 0.9rem;
    }
    
    .solution-teaser {
        font-size: 1.1rem;
        padding-top: 30px;
    }
    
    .solution-line {
        width: 60px;
        height: 3px;
    }
    
    .transition-blur {
        top: -100px;
        height: 200px;
    }
}

/* Seção EVE - Decisões Estratégicas */
.eve {
    background: linear-gradient(180deg, #f8f9fa 0%, #e6f0ff 100%);
    padding: 80px 0 150px;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

/* Padrão de fundo com pontos */
.eve-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 102, 204, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

/* Efeito de brilho */
.eve-glow {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.2) 0%, rgba(0, 102, 204, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

/* Badge da seção */
.badge-pill.eve-badge {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
    border: 1px solid rgba(0, 102, 204, 0.3);
    color: #0066cc;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.15);
}

.badge-pill .dot {
    width: 10px;
    height: 10px;
    background-color: #0066cc;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.eve-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* Cabeçalho da seção */
.eve-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.eve-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333333;
    line-height: 1.2;
}

.eve-header .section-subtitle {
    font-size: 1.2rem;
    color: #555555;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid de cards */
.eve-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

/* Estilo dos cards */
.eve-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.eve-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
}

/* Cabeçalho do card */
.eve-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.eve-card-header .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #0066cc;
    transition: all 0.3s ease;
}

.eve-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
    color: #8a2be2;
}

.eve-card-header .card-icon svg {
    width: 30px;
    height: 30px;
}

.eve-card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333333;
}

/* Corpo do card */
.eve-card-body {
    color: #555555;
}

.eve-card-body p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Lista dentro dos cards */
.eve-list {
    list-style: none;
    padding: 0;
}

.eve-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.eve-check {
    color: #0066cc;
    font-size: 1.2rem;
    margin-right: 10px;
    font-weight: bold;
}

/* Efeito de brilho nos cards */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    transition: 0.5s;
    pointer-events: none;
}

.eve-card:hover .card-shine {
    left: 100%;
    transition: 0.5s;
}

/* CTA da seção */
.eve-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
    border: 1px solid rgba(0, 102, 204, 0.15);
    overflow: hidden;
}

.eve-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 6s infinite linear;
    z-index: -1;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.eve-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.eve-cta p {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 25px;
}

/* Responsividade */
@media (max-width: 992px) {
    .eve-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .eve-content .eve-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .eve-header .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .eve {
        padding: 60px 0 100px;
    }
    
    .eve-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .eve-content .eve-card:last-child {
        grid-column: span 1;
    }
    
    .eve-card {
        padding: 25px;
    }
    
    .eve-card-header .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .eve-card-header .card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .eve-card-header h3 {
        font-size: 1.2rem;
    }
    
    .eve-cta {
        padding: 30px 20px;
    }
    
    .eve-cta h3 {
        font-size: 1.5rem;
    }
    
    .eve-cta p {
        font-size: 1rem;
    }
    
    .eve-header .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .eve {
        padding: 50px 0 80px;
    }
    
    .eve-header {
        margin-bottom: 30px;
    }
    
    .eve .section-title {
        font-size: 1.8rem;
    }
    
    .eve .section-subtitle {
        font-size: 1rem;
    }
    
    .eve-badge {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .eve-content {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .eve-card {
        padding: 20px;
    }
    
    .eve-card-header .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .eve-card-header .card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .eve-card-header h3 {
        font-size: 1.2rem;
    }
    
    .eve-card-body p {
        font-size: 0.95rem;
    }
    
    .eve-list li {
        margin-bottom: 10px;
    }
    
    .eve-check {
        font-size: 1rem;
    }
    
    .eve-cta {
        padding: 25px;
    }
    
    .eve-cta h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .eve-cta p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}/* End custom CSS */