:root {
    --primary-red: #FF4B4B;
    --primary-blue: #2B6CB0;
    --text-dark: #1A202C;
    --text-light: #4A5568;
    --background-light: #F7FAFC;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 80px;
    
}

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

section {
    padding: 80px 0;
    position: relative;
}

/* Video Section - estilo hero invertido */
.video-hero-section {
  width: 100vw;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  background: url('../images/bg-video.jpg') center center/cover no-repeat;
  padding: 40px 0 0 0;
  overflow: hidden;
}

.video-hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}




.video-hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  
  
}

.phone-video-wrapper {
  position: relative;
  width: 800px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 100vw;
  overflow: visible;
}

.mao-phone-bg {
  width: 1600px;
  max-width: none;
  height: auto;
  display: block;
  position: absolute;
  top: -550px;
  left: 68%;
  transform: translateX(-32%);
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.phone-screen {
  position: absolute;
  top: 80px; /* ajuste fino para encaixar na tela do celular */
  left: 52px; /* ajuste fino para encaixar na tela do celular */
  width: 675px;
  height: 327px;
  border-radius: 40px;
  overflow: hidden;
  z-index: 2;
  background: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .phone-video-wrapper {
    width: 100vw;
    height: auto;
    max-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
  }
  .mao-phone-bg {
    display: none;
  }
  .phone-screen {
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 56vw; /* 16:9 ratio */
    max-width: 100vw;
    max-height: 56vw;
    border-radius: 18px;
    margin: 0 auto;
    background: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .phone-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
}


.phone-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-hero-text .button-container {
    margin-top: 8px;
}

@media (max-width: 900px) {
    .video-hero-content {
        flex-direction: column;
        gap: 32px;
    }
    .video-hero-text {
        align-items: center;
        padding-left: 0;
        text-align: center;
    }
    .video-hero-text h1 {
        font-size: 2rem;
    }
    .video-hero-wrapper {
        max-width: 100%;
    }
}


@keyframes videoFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-hero-wrapper:hover {
    box-shadow: 0 8px 40px rgba(43,108,176,0.18);
    transform: scale(1.03);
}

/* Botão abaixo do vídeo */
.video-cta-button {
    width: 100%;
    max-width: 450px;
    margin: 24px auto 0 auto;
    display: flex;
    justify-content: center;
}
.video-cta-button .cta-button {
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    padding: 18px 0;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    padding: 80px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: unset;
}


.final-cta::before {
    display: none;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 32px 32px 0 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 340px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    overflow: visible;
}


.cta-image-wrapper {
    position: absolute;
    left: -230px;
    bottom: 0;
    transform: translateY(15%);
    width: 330px;
    height: 410px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
}

/* Classe da imagem do Lucas na seção final */
.cta-lucas-img {
    /* width: 100%; */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(43,108,176,0.10));
    z-index: 3;
    margin-right: 140px;
    margin-bottom: 65px;
}

@media (max-width: 1100px) {
    .cta-image-wrapper {
        width: 220px;
        height: 280px;
        transform: translateY(10%);
    }
}

.cta-left {
    flex: 1;
    padding-left: 60px;
    padding-right: 32px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 320px;
}

.final-cta .cta-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    margin-bottom: 1.2rem;
}

.cta-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 2;
    min-width: 320px;
    margin-left: 16px;
}

.price-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px 20px 20px 20px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    width: 270px;
    max-width: 270px;
    margin-bottom: 20px;
    margin-right: 0;
    box-shadow: 0 6px 24px rgba(43, 108, 176, 0.09);
} 

.price-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
}

.price-header {
    text-align: center;
    margin-bottom: 24px;
}

.price-label {
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.price-amount {
    margin-bottom: 24px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    vertical-align: top;
    position: relative;
    top: 4px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: #6c757d;
    margin-left: 4px;
}

.price-features {
    border-top: 1px solid #e9ecef;
    padding-top: 16px;
}

.price-features p {
    font-size: 0.95rem;
}

.price-features p {
    margin-bottom: 16px;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.price-features p:last-child {
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.guarantee-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

@media (max-width: 900px) {
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-content {
        flex-direction: column;
        align-items: center;
        padding: 32px 20px;
        gap: 30px;
        min-height: auto;
        max-width: 95vw;
    }
    
    .cta-image-wrapper {
        position: static;
        width: 200px;
        height: auto;
        transform: none;
        margin: 0;
        order: -1;
    }
    
    .cta-lucas-img {
        width: 100%;
        max-width: 200px;
        height: auto;
        margin: 0;
    }
    
    .cta-left {
        padding: 0;
        text-align: center;
        min-width: auto;
        order: 1;
    }
    
    .cta-right {
        min-width: auto;
        margin: 0;
        order: 2;
    }
    
    .price-card {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .final-cta {
        padding: 40px 0;
    }
    
    .cta-content {
        padding: 24px 16px;
        gap: 20px;
    }
    
    .cta-image-wrapper {
        width: 160px;
    }
    
    .cta-lucas-img {
        max-width: 160px;
    }
    
    .final-cta h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .guarantee-text {
        justify-content: center;
        text-align: center;
    }
}

/* Nova Seção CTA */
.final-cta-new {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-new::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url('images/dots.svg');
    opacity: 0.1;
    transform: rotate(45deg);
}

.cta-content-new {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.highlight-tag {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.gradient-text {
    color: var(--primary-blue);
    font-weight: 700;
}

.benefits-list {
    margin: 8px 0 16px 0;
    background: #f8f9fa;
    padding: 16px;
    border-radius: 16px;
    font-size: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 4px;
    transition: all 0.3s ease;
    color: #333;
    font-size: 1rem;
}

.benefit-item:hover {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
    color: var(--primary-blue);
    font-size: 20px;
}

.cta-buttons-new {
    display: flex;
    align-items: center;
    gap: 20px;
}

.guarantee-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
}

.price-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
}

.price-header {
    text-align: center;
    margin-bottom: 24px;
}

.price-label {
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
}

.price-amount {
    margin-top: 12px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #333;
}

.period {
    font-size: 16px;
    color: #6c757d;
}

.price-features {
    margin-top: 24px;
    border-top: 1px solid #e9ecef;
    padding-top: 24px;
}

.price-features p {
    margin-bottom: 16px;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .cta-content-new {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .benefit-item {
        justify-content: center;
    }

    .cta-buttons-new {
        justify-content: center;
        flex-direction: column;
    }

    .price-card {
        max-width: 100%;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    color: var(--white);
    padding: 120px 0;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern.svg') repeat;
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    top: -200px;
    right: -200px;
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-text {
    flex: 1;
    max-width: 600px;
    text-align: left;
    position: relative;
}

.hero-text .button-container {
    margin-bottom: 2rem;
}

.hero-text::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: url('images/dots.svg');
    top: -40px;
    left: -60px;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: left;
    background: linear-gradient(to right, #FFFFFF, #E2E8F0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-align: left;
}

.hero-image {
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
}

.hero-image img:hover {
    transform: scale(1.02) rotate(-1deg);
}

/* Efeitos modernos globais */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.highlight-hover {
    transition: all 0.3s ease;
}

.highlight-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Botões modernos */
.cta-button {
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-red));
    color: var(--white);
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
    border: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button.blue {
    background: var(--primary-blue);
}

/* How it Works Section */
.how-it-works, .why-minds {
    text-align: center;
}

.how-it-works {
    padding: 120px 0 80px;
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('images/dots.svg') repeat;
    opacity: 0.4;
    animation: slide 20s linear infinite;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px auto;
    max-width: 1200px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px auto;
    max-width: 1200px;
}

/* Forçar 4 colunas em telas grandes para cards */
@media (min-width: 1200px) {
    .cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature, .card, .platform-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature:hover, .card:hover, .platform-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature::before, .card::before, .platform-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature:hover::before, .card:hover::before, .platform-item:hover::before {
    transform: scaleX(1);
}

.feature i, .card i, .platform-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    background: rgba(43, 108, 176, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    will-change: transform;
}

.feature:hover i, .card:hover i, .platform-item:hover i {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotateY(360deg);
}

.feature p, .card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-light);
    margin: 0;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

/* Responsivo para seção Como Funciona (.features) */
@media (max-width: 1199px) and (min-width: 900px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 16px;
    }
}

@media (max-width: 899px) and (min-width: 600px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 16px;
    }
}

@media (max-width: 599px) {
    .features {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }
}

/* Responsivo para outras seções (.cards) */
@media (max-width: 1199px) and (min-width: 900px) {
    .cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 0 16px;
    }
}

@media (max-width: 899px) and (min-width: 600px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 16px;
    }
}

@media (max-width: 599px) {
    .cards {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }
    
    .feature, .card {
        padding: 20px 16px;
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.testimonials::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, rgba(43, 108, 176, 0.1), rgba(229, 62, 62, 0.1));
    border-radius: 50%;
    bottom: -300px;
    right: -300px;
    filter: blur(60px);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.1;
    font-family: serif;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial cite {
    color: var(--primary-blue);
    font-style: normal;
    font-weight: 600;
    display: block;
    margin-top: 20px;
}

.button-container {
    margin-top: 40px;
}

.button-container.center {
    display: flex;
    justify-content: center;
}

.platform-features .button-container {
    margin-top: 60px;
    text-align: center;
}

/* Platform Features Section */
.platform-features {
    background: linear-gradient(135deg, #EBF8FF 0%, #E6FFFA 100%);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.video-hero-section {
    background: linear-gradient(135deg, #EBF8FF 0%, #E6FFFA 100%);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.video-hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('images/dots.svg') repeat;
    opacity: 0.3;
    animation: slide 20s linear infinite;
    z-index: 0;
}

.video-hero-section > * {
    position: relative;
    z-index: 1;
}

.platform-features::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('images/dots.svg') repeat;
    opacity: 0.3;
    animation: slide 20s linear infinite;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
    position: relative;
}

.platform-grid::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    top: 50%;
    right: -250px;
    transform: translateY(-50%);
    opacity: 0.05;
    filter: blur(100px);
    z-index: -1;
}

.platform-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.platform-item i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    background: rgba(43, 108, 176, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.platform-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive adjustments for platform features */
@media (max-width: 1024px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-item {
        padding: 25px;
    }
    
    .platform-item i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Why Minds Section com gradiente */
.why-minds {
    background: linear-gradient(135deg, #2B6CB0 0%, #1A365D 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.why-minds::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('images/dots.svg') repeat;
    opacity: 0.1;
    animation: slide 20s linear infinite;
}

.why-minds .section-title h2 {
    color: var(--white);
}

.why-minds .card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-minds .card h3,
.why-minds .card p {
    color: var(--white);
}

.why-minds .card i {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.why-minds .card:hover {
    background: rgba(255, 255, 255, 0.2);
}

.why-minds .card:hover i {
    background: var(--white);
    color: var(--primary-blue);
}

/* Hover effects para cards */
.feature:hover, .platform-item:hover {
    background: var(--white);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Header e Navegação */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.95), rgba(43, 108, 176, 0.95));
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.header.scrolled .nav-links a {
    color: var(--text-dark);
}

.header.scrolled .logo a {
    color: var(--primary-blue);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
}

.logo span {
    margin-left: 10px;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-login {
    padding: 8px 20px !important;
    border: 2px solid var(--white) !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
}

.nav-login:hover {
    background: var(--white) !important;
    color: var(--primary-blue) !important;
}

.nav-cta {
    background: var(--white) !important;
    color: var(--primary-blue) !important;
    padding: 10px 24px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.header.scrolled .menu-toggle span {
    background: var(--primary-blue);
}

/* Menu Responsivo */
@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, rgba(229, 62, 62, 0.98), rgba(43, 108, 176, 0.98));
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
        color: var(--white);
    }

    .nav-login, .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

/* Ajuste para o conteúdo não ficar embaixo do header fixo */
body {
    padding-top: 80px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-red);
}

/* Menu Dropdown Styles */
.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.main-menu a:hover {
    color: var(--primary-blue);
}

.main-menu .has-dropdown > a .dropdown-arrow {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.main-menu .has-dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.has-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    margin: 0;
}

.sub-menu a {
    padding: 0.75rem 1.5rem;
    display: block;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sub-menu a:hover {
    background: rgba(43, 108, 176, 0.05);
    color: var(--primary-blue);
}

.sub-menu li:last-child a {
    border-bottom: none;
}

/* Footer Menu Styles */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--white);
}

/* Current Menu Item Styles */
.current-menu-item > a,
.current-menu-ancestor > a,
.current-menu-parent > a {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

/* Mobile Menu Adjustments */
@media (max-width: 768px) {
    .main-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(43, 108, 176, 0.05);
        margin-top: 0.5rem;
        border-radius: 4px;
    }
    
    .has-dropdown:hover .sub-menu {
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        text-align: left;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        max-width: 80%;
        margin: 0;
    }

    .final-cta {
        padding: 80px 0;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 60px 0;
    }

    .hero-image {
        max-width: 100%;
    }

    .final-cta {
        padding: 60px 0;
    }

    .final-cta .cta-button {
        width: 100%;
        padding: 18px 32px;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: left;
        gap: 40px;
    }

    .hero h2 {
        text-align: left;
    }

    .hero-image {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
}

/* Acessibilidade */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Animações */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slide {
    from { background-position: 0 0; }
    to { background-position: 100% 100%; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Títulos das seções */
.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

/* Título específico da última seção (CTA final) */
.final-cta h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

/* Título específico do banner hero */
.hero-text h1 {
    text-align: left;
}

.hero-text h2 {
    text-align: left;
}
