* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
    overflow-x: hidden;
    overflow-y: auto;

    /* Esconde a barra de rolagem sem impedir a rolagem */
    scrollbar-width: none;          /* Firefox */
}

body::-webkit-scrollbar {
    display: none;                  /* Chrome, Safari, Edge (webkit) */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #1e3a8a, #93c5fd);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-weight: 700;
    font-size: 24px;
    color: #f9fafb;
}

.cta-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s;
}

.cta-btn:active {
    transform: scale(0.95);
}

section {
    padding: 60px 0;
}

.beneficios {
    padding-top: 10px;
    /* aproximar esta seção dos relatos de clientes */
    margin-top: -18px;
}

.hero {
    /* remove large top padding so the image can reach the top of the page */
    padding-top: 0;
    text-align: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
    overflow: visible;
}

.mentor-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 0;
}

/* Make the mentor image full-bleed horizontally and reach the top.
   Keep object-fit: contain so the image is not cropped; use max-width:none
   and center via negative side margins to override container padding. */
.mentor-image {
    display: block;
    width: 100vw;
    max-width: none;
    height: auto;
    object-fit: contain;
    border: none;
    border-radius: 0;
    background: transparent;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 24px; /* moved image down slightly */
    /* ensure the image visually reaches the very top of the page */
    transform: translateZ(0);
}

/* Larger image on wider screens */
@media (min-width: 768px) {
    .mentor-image {
        width: 420px;
        height: 420px;
    }
}

.mentor-text {
    text-align: left;
}

.mentor-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 2px;
    color: #000;
}

.mentor-role {
    font-size: 14px;
    color: #666;
    margin: 0;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-primary {
    background: #000;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
    width: 100%;
    max-width: 300px;
}

.cta-primary:active {
    transform: scale(0.97);
}

/* Replaced stat block with side-by-side hero images that slide in from sides */
.hero-images {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 40px;
    align-items: center;
    flex-wrap: nowrap;
}

/* rotating testimonials under hero images */
.testimonials-rotator {
    margin-top: 32px;
    margin-bottom: 12px;
    text-align: center;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-text {
    font-size: 15px;
    color: #444;
    max-width: 720px;
    margin: 0 auto;
    padding: 14px 18px;
    transition: opacity 0.5s ease;
    opacity: 1;
    background: #f0f0f0;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.testimonial-name {
    font-weight: 700;
    color: #000;
}

.testimonial-divider {
    color: #888;
    font-size: 13px;
}

.testimonial-message {
    color: #444;
}

.testimonial-text.fade-out {
    opacity: 0;
}

/* base styles for the side images (no slide animation) */
.hero-image-side {
    width: calc(50% - 30px);
    max-width: 420px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: none;
    opacity: 1;
}

.hero-image-side.left,
.hero-image-side.right {
    transform: none;
    opacity: 1;
}

/* make them proportional on small screens (stack nicely) */
@media (max-width: 720px) {
    .hero-images {
        gap: 12px;
    }
    .hero-image-side {
        width: 48%;
        max-width: none;
    }
}

/* keep previous larger-screen rules consistent */
@media (min-width: 768px) {
    .hero-image-side {
        max-width: 460px;
    }
}

h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
}

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

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.card p {
    color: #666;
    font-size: 15px;
}

.como-funciona {
    background: #fafafa;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.timeline-number {
    min-width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.timeline-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #666;
    font-size: 15px;
}

.lista-diferenciais {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.diferencial {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.check {
    min-width: 32px;
    height: 32px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.diferencial strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.diferencial p {
    color: #666;
    font-size: 14px;
}

.contato {
    background: #000;
    color: #fff;
}

.contato h2 {
    color: #fff;
}

.contato-subtitle {
    text-align: center;
    color: #ccc;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 16px;
    background: #1a1a1a;
    color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.success-message {
    display: none;
    background: #1a6b1a;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.success-message.show {
    display: block;
}

footer {
    background: #0a0a0a;
    color: #999;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}

@media (min-width: 768px) {
    h1 {
        font-size: 48px;
    }

    .subtitle {
        font-size: 18px;
    }

    .cards {
        flex-direction: row;
    }

    .hero-stats {
        gap: 40px;
    }

    .cta-primary {
        width: auto;
    }
}