* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'League Spartan', sans-serif;
    position: relative;
    background: url('BackgroundFernanda.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    background-color: #000; /* fallback */
    color: #fff;
    z-index: 0;
    overflow-x: hidden;
}

/* Camada escura por cima do body (igual a .hero::before) */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
    pointer-events: none;
}

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


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 24px;
}

.edition {
    background: linear-gradient(45deg, #43b7c9, #6ad4e6); /* Cor da identidade visual */
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.event-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #b8b8b8;
    flex-shrink: 1;
    min-width: 0;
}

.calendar-icon {
    font-size: 16px;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 60px;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text h1 {
    font-family: 'League Spartan', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #fff; /* cor padrão do h1 */
    letter-spacing: -2px; /* <-- Esta é a linha que foi adicionada/modificada */
}

.hero-text p {
    font-size: 1.1rem;
    color: #b8b8b8;
    margin-bottom: 32px;
    line-height: 1.6;
}

.price-highlight {
    display: none; /* Remover o valor do workshop */
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #43b7c9, #6ad4e6); /* Cor da identidade visual */
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 25px;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(67, 183, 201, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(67, 183, 201, 0.4);
}

.button-icon {
    font-size: 20px;
}

.hero-image img {
    width: 280px; /* ou 240px se quiser menor */
    height: auto;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.profile-image {
  padding: 0;
  margin: 0 auto;
  background: none;
  border-radius: 8px;
  border: none;
  box-shadow: none;
}


.profile-image::before,
.profile-image::after {
  display: none !important; /* remove pseudo-elementos girando */
}

.profile-image img {
  width: 1260px;              /* 🔥 tamanho bom para destaque no desktop */
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .profile-image img {
    width: 240px;
  }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(45deg, #43b7c9, #6ad4e6); /* Cor da identidade visual */
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
}

.urgency-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.urgency-icon {
    font-size: 24px;
}

.urgency-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

.urgency-reason {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
}


/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: rgba(67, 183, 201, 0.1); /* Cor da identidade visual */
}

.problem-content {
    text-align: center;
}

.problem-content h2 {
    font-family: 'League Spartan', sans-serif; /* Fonte do título */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #43b7c9; /* Cor da identidade visual */
}

.problem-content p {
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-icon {
    font-size: 2rem;
}


/* Content Sections */
.content-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'League Spartan', sans-serif; /* Fonte do título */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #43b7c9; /* Cor da identidade visual */
}

.section-header p {
    font-size: 1.2rem;
    color: #b8b8b8;
}

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

.content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(67, 183, 201, 0.3); /* Cor da identidade visual */
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.content-card h3 {
    font-family: 'League Spartan', sans-serif; /* Fonte do título */
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.content-card p {
    color: #b8b8b8;
    line-height: 1.6;
}

.content-card ul {
    list-style: none;
    text-align: left;
}

.content-card li {
    color: #b8b8b8;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.content-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #43b7c9; /* Cor da identidade visual */
    font-weight: bold;
}


/* Schedule Section */
.schedule-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(67, 183, 201, 0.1) 0%, rgba(106, 212, 230, 0.1) 100%); /* Cor da identidade visual */
}

.schedule-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid #43b7c9; /* Cor da identidade visual */
}

.timeline-hour {
    font-size: 2rem;
    font-weight: 700;
    color: #43b7c9; /* Cor da identidade visual */
    text-align: center;
}

.timeline-content h3 {
    font-family: 'League Spartan', sans-serif; /* Fonte do título */
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.timeline-content p {
    color: #b8b8b8;
    line-height: 1.6;
}

.recording-info {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.recording-icon {
    font-size: 1.5rem;
}


/* Target Section */
.target-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.target-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.target-item:hover {
    transform: translateY(-5px);
    border-color: rgba(67, 183, 201, 0.3); /* Cor da identidade visual */
}

.target-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.target-item p {
    color: #b8b8b8;
    line-height: 1.6;
}


/* About Section */
.about-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 400px; /* NOVO: limite no desktop */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-text h2 {
    font-family: 'League Spartan', sans-serif; /* Fonte do título */
       font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #43b7c9; /* Cor da identidade visual */
}

.about-text h3 {
      font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    color: #43b7c9; /* Cor da identidade visual */
    margin-bottom: 24px;
}

.about-achievements {
    list-style: none;
}

.about-achievements li {
    color: #b8b8b8;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.about-achievements li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}


/* Offer Section */
.offer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(67, 183, 201, 0.1) 0%, rgba(106, 212, 230, 0.1) 100%); /* Cor da identidade visual */
}

.offer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.offer-header {
    margin-bottom: 40px;
}

.offer-header h2 {
    font-family: 'League Spartan', sans-serif; /* Fonte do título */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #43b7c9; /* Cor da identidade visual */
}

.price-box {
    display: none; /* Remover o valor do workshop */
}

.offer-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.benefit-icon {
    font-size: 1.2rem;
    color: #43b7c9; /* Cor da identidade visual */
}

.guarantee-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.guarantee-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 15px;
    text-align: left;
}

.guarantee-item h4 {
    color: #43b7c9; /* Cor da identidade visual */
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.guarantee-item p {
    color: #b8b8b8;
    line-height: 1.6;
}


/* Form Section */
.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(67, 183, 201, 0.1) 0%, rgba(106, 212, 230, 0.1) 100%); /* Cor da identidade visual */
}

.form-content {
    max-width: 600px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-family: 'League Spartan', sans-serif; /* Fonte do título */
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #43b7c9; /* Cor da identidade visual */
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #b8b8b8;
}

.registration-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #43b7c9; /* Cor da identidade visual */
    box-shadow: 0 0 20px rgba(67, 183, 201, 0.3);
}

.form-group input::placeholder {
    color: #b8b8b8;
}

.checkout-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(45deg, #43b7c9, #6ad4e6); /* Cor da identidade visual */
    color: white;
    border: none;
    padding: 20px;
      border-radius: 10px;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(67, 183, 201, 0.3);
    margin-bottom: 24px;
}

.checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(67, 183, 201, 0.4);
}

.security-badges {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.security-item {
    font-size: 14px;
    color: #b8b8b8;
    display: flex;
    align-items: center;
    gap: 6px;
}


/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #b8b8b8;
    line-height: 1.6;
}


/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(67, 183, 201, 0.2) 0%, rgba(106, 212, 230, 0.2) 100%); /* Cor da identidade visual */
}

.final-cta-content {
    text-align: center;
}

.final-cta-content h2 {
    font-family: 'League Spartan', sans-serif; /* Fonte do título */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #43b7c9; /* Cor da identidade visual */
}

.final-cta-content p {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 32px;
}

.final-cta {
    background: linear-gradient(45deg, #43b7c9, #6ad4e6); /* Cor da identidade visual */
    box-shadow: 0 8px 32px rgba(67, 183, 201, 0.3);
}

.final-cta:hover {
    box-shadow: 0 12px 40px rgba(67, 183, 201, 0.4);
}

.final-urgency {
    margin-top: 24px;
    color: #b8b8b8;
    font-size: 1rem;
}



.footer-legal a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
}


/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0);
}

.hero-flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}.highlight-blue {
    color: #43b7c9 !important;
    font-weight: 700;
}



/* MELHORIAS PARA MOBILE - CORREÇÕES ESPECÍFICAS */


/* Media queries mais abrangentes para diferentes tamanhos de tela */
@media (max-width: 480px) {

/* Header mobile - melhorias específicas */
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        display: flex;
        flex-direction: column; /* Organiza os itens em coluna */
        align-items: center; /* Centraliza os itens */
        text-align: center;
        gap: 8px;
    }

    .logo {
        display: flex;
        flex-direction: column; /* Itens do logo em coluna */
        align-items: center; /* Centraliza os itens do logo */
        gap: 5px; /* Espaçamento entre os itens do logo */
        font-size: 16px;
        font-weight: 600;
    }
    
    .logo-icon {
        font-size: 20px;
    }
    
    .edition {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .event-info {
        font-size: 14px; /* Aumentei um pouco para melhor leitura */
        justify-content: center;
    }
    

/* H1 mobile - correções específicas */
    .hero-text h1 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
          letter-spacing: -0.5px; /* Exemplo: um pouco menos apertado no mobile */
        margin-bottom: 16px;
        text-align: center;
    }
    

/* Hero section mobile */
    .hero {
        padding: 140px 0 40px; /* Aumentei o padding superior para não sobrepor o header */
        min-height: auto;
    }
    
    .hero-flex-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .hero-text {
        order: 1;
        width: 100%;
        padding: 0 10px;
    }


/* AJUSTE: Diminuir a fonte do subtítulo */
    .hero-text p {
        font-size: 1rem !important; /* Fonte diminuída */
        line-height: 1.5 !important;
        margin-bottom: 24px;
    }
    
    .hero-image {
        order: 2;
        margin-top: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .cta-button {
        padding: 10px 17px;
        font-size: 12px;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    

/* Container mobile */
    .container {
        padding: 0 15px;
    }
    

/* Seções gerais mobile */
    .content-section,
    .schedule-section,
    .target-section,
    .about-section,
    .offer-section,
    .form-section,
    .faq-section,
    .final-cta-section {
        padding: 60px 0;
    }
    

/* Títulos h2 mobile */
    .section-header h2,
    .problem-content h2,
    .about-text h2,
    .offer-header h2,
    .form-header h2,
    .final-cta-content h2 {
        font-size: 1.8rem !important;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    

/* Parágrafos mobile */
    .section-header p,
    .problem-content p,
    .final-cta-content p {
        font-size: 1rem;
        line-height: 1.4;
    }
    

/* Grids mobile */
    .content-grid,
    .target-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-card {
        padding: 24px 20px;
    }
    

/* Timeline mobile */
    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }
    
    .timeline-hour {
        font-size: 1.5rem;
    }
    

/* About section mobile */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    

/* Guarantee details mobile */
    .guarantee-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    

/* Form mobile */
    .registration-form {
        padding: 24px 20px;
    }
    
    .form-header h2 {
        font-size: 1.6rem !important;
    }
    
    .checkout-button {
        font-size: 18px;
        padding: 16px;
    }
    

/* Security badges mobile */
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    

/* FAQ mobile */
    .faq-question {
        padding: 20px 16px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 16px 20px;
        font-size: 0.9rem;
    }
    

/* Footer mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
}


/* Media query para tablets */
@media (max-width: 768px) and (min-width: 481px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        text-align: center;
    }
    
    .hero-flex-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .content-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .guarantee-details {
        grid-template-columns: 1fr;
    }
}


/* AJUSTE: Logo maior na seção "Problem" */
.highlight-image {
    width: 150px; /* Tamanho padrão para desktop */
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .solution-highlight {
        flex-direction: column;
        align-items: center; /* Centraliza os itens */
    }
    .highlight-image {
        width: 180px !important; /* Aumentando o logo no mobile */
        margin-right: 0;
        margin-bottom: 8px; /* Espaçamento abaixo do logo */
    }
}


/* Correções adicionais para overflow */
html, body {
    overflow-x: hidden;
    width: 100%;
}

* {
    box-sizing: border-box;
}


/* Garantir que imagens não quebrem o layout */
img {
    max-width: 100%;
    height: auto;
}


/* Melhorar legibilidade em telas pequenas */
@media (max-width: 480px) {

    .solution-highlight {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 16px;
    }
    
    .recording-info {
        flex-direction: column;
        gap: 8px;
        padding: 16px;
        font-size: 0.9rem;
    }
    
    .urgency-content {
        padding: 0 16px;
    }
    
    .urgency-text {
        font-size: 1.1rem;
    }
}

.highlight-blue {
    color: #43b7c9 !important;
    font-weight: 700 !important;
}




/* Mobile adjustments */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

   .about-image {
    width: 100%;
    max-width: 500px; /* tamanho maior no desktop */
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
    .header .logo {
        font-size: 16px;
    }

    .header .edition {
        font-size: 12px;
    }

    .header .event-info {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header .logo {
        font-size: 14px;
    }

    .header .logo-icon {
        font-size: 20px;
    }

    .header .edition {
        font-size: 10px;
        padding: 3px 8px;
    }

    .header .event-info {
        font-size: 10px;
    }

    .about-image {
        width: 80%; /* Mantém a proporção */
        max-width: 280px; /* Exemplo: de 200px para 280px */
        margin: 0 auto; /* Garante a centralização */
    }
}

.highlight-blue {
    color: #43b7c9; /* Cor da identidade visual */
}




.highlight-image {
    width: 100px; /* Ajuste conforme necessário */
    height: auto;
    margin-right: 16px; /* Espaçamento à direita do texto */
    vertical-align: middle;
}

@media (max-width: 768px) {
    .solution-highlight {
        flex-direction: column;
    }
    .highlight-image {
        margin-right: 0;
        margin-bottom: 10px;
    }
}



.header-logo {
    height: 180px !important; /* Ajuste o tamanho conforme necessário */
    width: auto;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .header-logo {
        height: 25px;
    }
}



.highlight-image {
    width: 150px; /* Aumentando o tamanho do logo */
    height: auto;
    margin-right: 16px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .highlight-image {
        width: 100px; /* Tamanho menor para mobile */
        margin-right: 0;
        margin-bottom: 10px;
    }
}


/* Novo agrupamento */
.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Deixa a logo maior, mas fora do fluxo do header */
.header-logo {
    height: 200px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}


/* Empurra o texto da logo para a direita da imagem */
.logo-text {
    padding-left: 210px; /* um pouco maior que a logo para não sobrepor */
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Garante que a altura da barra azul fique natural */
.header {
    padding: 15px 0;
    overflow: visible; /* deixa a imagem ultrapassar */
}


/* AJUSTE FORÇADO PARA O SUBTÍTULO NO MOBILE */
@media (max-width: 480px) {
    .hero-text p {
        font-size: 0.7rem !important; /* Reduzindo ainda mais e forçando a aplicação */
        line-height: 1.4 !important;   /* Ajustando a altura da linha */
    }
}


/* Ajuste para tablets (opcional, mas recomendado) */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-text p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }
}



/* AJUSTE FINO PARA A SEÇÃO 'PROBLEM' NO MOBILE */
@media (max-width: 768px) {
    .solution-highlight {
        flex-direction: column; /* Coloca o logo acima do texto */
        align-items: center;    /* Centraliza tudo */
        text-align: center;     /* Centraliza o texto */
        gap: 20px;              /* Aumenta o espaço entre o logo e o texto */
        padding: 24px 16px;     /* Adiciona um respiro interno */
    }

    .highlight-image {
        width: 160px;           /* Define um tamanho bom para o logo no mobile */
        margin-right: 0;        /* Remove a margem lateral que não é mais necessária */
        margin-bottom: 0;       /* Remove a margem inferior (o 'gap' já cuida disso) */
    }

    .solution-highlight span {
        font-size: 1rem;        /* Ajusta o tamanho da fonte do texto para mobile */
        line-height: 1.5;       /* Melhora a legibilidade */
    }
}



/* =============================================== */

/* CORREÇÃO FINAL PARA SEÇÃO 'PROBLEM' NO MOBILE   */
@media (max-width: 768px) {
    .problem-section .solution-highlight {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem; /* Espaçamento entre logo e texto */
    }

    .problem-section .highlight-image {
        width: 160px !important; /* Tamanho ajustado para o logo */
        height: auto;
        margin: 0; /* Remove todas as margens */
    }

    .problem-section .solution-highlight span {
        font-size: 1.1rem; /* Fonte do texto de explicação */
        line-height: 1.5;
        max-width: 90%; /* Evita que o texto encoste nas bordas */
    }
}

.urgency-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(45deg, #43b7c9, #6ad4e6); /* Cor da identidade visual */
  padding: 12px 24px;
  border-radius: 30px;
  margin: 40px auto; /* Centraliza horizontalmente */
  font-weight: 700;
  color: white;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(67, 183, 201, 0.3);
  width: fit-content;
  max-width: 90%;
  text-align: center;
}

.urgency-mini .urgency-icon {
  font-size: 20px;
}


/* Mobile: Centralização e responsividade */
@media (max-width: 480px) {
  .urgency-mini {
    flex-direction: row;
    font-size: 0.95rem;
    padding: 10px 20px;
  }


}

@media (max-width: 768px) {
  body {
    background-attachment: scroll !important;
  }
}

@media (max-width: 768px) {
  .solution-highlight {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 16px;
    text-align: center;
  }

  .solution-highlight .highlight-image {
    width: 120px !important;
    margin-bottom: 6px;
  }

  .solution-highlight span {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .header-logo {
    max-width: 120px;
    margin: 0 auto;
  }

  .logo span {
    font-size: 14px;
  }

  .edition {
    font-size: 12px;
    font-weight: 500;
  }
}

@media (max-width: 768px) {
    body {
        background: #000 !important; /* remove a imagem e deixa só o preto */
        background-image: none !important;
        background-attachment: initial !important;
    }

    body::after {
        background: none !important; /* remove o escurecimento */
    }
}

@media (max-width: 768px) {
    body {
        background: url('BackgroundFernanda.jpg') no-repeat center center;
        background-size: cover;
        background-attachment: scroll !important;
        position: relative;
    }

    body::after {
    content: '';
    position: fixed;
    inset: 0;
    backdrop-filter: blur(4px); /* efeito moderno */
    background: rgba(0, 0, 0, 0.3); /* camada escura leve */
    z-index: -1;
    pointer-events: none;
  }
}

@media (max-width: 480px) {
    .about-text h3 {
        font-size: 1.2rem !important;
        font-weight: 300 !important;
        opacity: 0.8 !important;
    }
}


@media (max-width: 768px) {
  .problem-section {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .problem-section .solution-highlight {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important; /* Reduzido de 0 para 8px para aproximar */
    padding: 12px 16px !important; /* Reduzido padding */
    margin: -16px 0 -12px 0 !important; /* Ajustado margens */
  }

  .problem-section .highlight-image {
    width: 240px !important;
    margin: 0 0 4px 0 !important; /* Pequena margem inferior */
    padding: 0 !important;
    display: block !important;
  }

  .problem-section .solution-highlight > span {
    display: block !important;
    font-size: 1rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

@media (min-width: 769px) {
  .problem-section .highlight-image {
    width: 260px !important;  /* ou 280px se quiser maior */
    margin-bottom: 12px !important;
  }
}

.problem-section .highlight-image {
  max-width: 220px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.solution-highlight {
  padding: 20px !important;
  height: 180px !important; /* Ajuste conforme necessário */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo com tamanho fixo */
.solution-highlight .highlight-image {
  max-width: 200px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 480px) {
  .solution-highlight {
    min-height: 0 !important;
    height: auto !important;
    padding: 8px 10px !important; /* Reduzido ainda mais */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px !important; /* Gap ainda menor para telas pequenas */
  }

  .solution-highlight .highlight-image {
    max-width: 180px;
    height: auto;
    margin: 0 auto 2px auto !important; /* Margem inferior mínima */
  }

  .solution-highlight span {
    margin: 0 !important;
    font-size: 0.95rem !important; /* Texto ligeiramente menor */
    text-align: center;
    line-height: 1.3 !important;
  }
}

@media (max-width: 480px) {
  .profile-image {
    margin-bottom: 44px;
  }
}

@media (max-width: 768px) {
  .problem-section .solution-highlight {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .problem-section .highlight-image {
    width: 220px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }

  .problem-section .solution-highlight > span {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.93rem !important;
    line-height: 1.1 !important;
    text-align: center !important;
    display: block !important;
  }

  .problem-section .solution-highlight > span span {
    line-height: 1.1 !important;
    display: inline !important;
  }
}

@media (max-width: 768px) {
  .problem-section .container {
    padding: 0 12px !important;
  }

  .problem-content {
    margin-top: -12px !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .solution-highlight {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .solution-highlight img.highlight-image {
    width: 220px !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto 8px auto !important;
  }

  .solution-highlight span {
    font-size: 1rem !important;
    line-height: 1.4 !important;
    max-width: 90%;
    margin: 0 auto !important;
  }
}

@media (max-width: 480px) {
  .problem-section .highlight-image {
    width: 100px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    padding: 0 !important;
    line-height: 0 !important;     /* IMPORTANTE: remove espaçamento interno de linha */
  }

  .problem-section .solution-highlight {
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 4px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .problem-section .solution-highlight > span {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    font-size: 1rem !important;
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .problem-section .solution-highlight img.highlight-image {
    width: 160px !important;
    height: auto !important;
    max-width: none !important;
    display: block !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(67, 183, 201, 0.7); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(67, 183, 201, 0.8); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(67, 183, 201, 0.7); }
}

/* Piscar suave só no primeiro botão */
.hero .cta-button {
  animation: pulse 1.5s infinite ease-in-out;
}

/* Urgency mini banner */
.urgency-mini {
  animation: pulse 1.5s infinite ease-in-out;
}

/* Final CTA button */
.final-cta-section .final-cta {
  animation: pulse 1.5s infinite ease-in-out;
}

.target-item p {
  font-size: 1.2rem; /* padrão é menor, agora maior */
  font-weight: 500;  /* deixa mais encorpado */
  line-height: 1.5;  /* espaço entre linhas */
  text-align: center; /* centraliza (opcional) */
}

@media (min-width: 769px) {
  .target-item p {
    font-size: 1.2rem;
  }
}

.schedule-section .section-header h2 {
  margin-bottom: 10px; /* antes era 24px */
}

/* --- Hero: aumentar a foto no mobile --- */
@media (max-width: 768px) {
  /* libera o wrapper que estava travando em 150x150 */
  .profile-image {
    width: auto !important;
    height: auto !important;
    max-width: none !important;
  }

  /* aumenta a imagem de fato (usa !important para vencer regras anteriores) */
  .hero .hero-image .profile-image img {
    width: 210px !important;   /* ajuste seu gosto: 240–280px */
    height: auto !important;
  }
}

/* Título do formulário: deixa tudo branco por padrão */
.form-header h2 {
  color: #ffffff !important;
}

/* E deixa só os trechos desejados em azul */
.form-header h2 .highlight-blue {
  color: #43b7c9 !important;
  font-weight: 700 !important;
}

/* Aumenta o subtítulo "Cada hora com resultado imediato" */
.schedule-section .section-header p {
  font-size: 1.2rem;   /* antes 1.2rem */
  font-weight: 500;    /* deixa mais encorpado */
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.02);
}

.testimonials-grid {
  display: flex;
  justify-content: center;
}

.testimonial-card {
  max-width: 800px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-text {
  font-size: 1.1rem;
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-name {
  display: block;
  text-align: right;
  font-weight: 600;
  color: #43b7c9;
  font-size: 1rem;
}

.testimonial-photo {
  width: 67px !important;   /* aumenta o tamanho e força aplicação */
  height: 67px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  vertical-align: middle !important;
  margin-right: 10px !important;
  border: 2px solid #43b7c9 !important; /* opcional */
}

.testimonial-name {
  font-size: 1.4rem !important; /* aumenta o tamanho */
  font-weight: 600;             /* deixa mais destacada */
  vertical-align: middle;
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== Depoimento com legenda alinhada ===== */
.testimonial-caption {
  display: flex;
  justify-content: center;   /* mantém ambos centralizados em linha */
  align-items: center;
  gap: 40px;                 /* 🔥 controla a distância entre os dois */
  width: 100%;
  max-width: 520px;
  margin: 8px auto 0;
  font-size: .95rem;
}

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

.testimonial-role {
  color: #b8b8b8;
  font-style: italic;
}

/* Mobile responsivo */
@media (max-width: 480px) {
  .testimonial-caption {
    font-size: .85rem;
    padding: 0 6px;
  }
}

/* Ajuste do tamanho do print */
.testimonial-image {
  display: block;
  width: 100%;
  max-width: 520px;   /* 🔥 Reduzido para ficar menor no PC */
  border-radius: 16px;
  box-shadow:
    0 20px 60px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 0 28px rgba(67,183,201,.35);
  margin: 0 auto;
}

/* Mobile continua ocupando a largura quase toda */
@media (max-width: 768px) {
  .testimonial-image {
    max-width: 90vw;
  }
}

@media (max-width: 480px) {
  .testimonial-name {
    font-size: 0.85rem;   /* 🔥 menor no celular */
  }
}

/* Subtítulo principal - Desktop */
.subtitulo-principal {
  font-size: 1.4rem !important;   /* aumenta (padrão estava ~1.1rem) */
  font-weight: 500;
  line-height: 1.6;
  color: #e0e0e0;  /* mantém cinza claro */
  margin-bottom: 28px;
  text-align: center; /* opcional: centralizar */
}

/* FORÇA o tamanho do subtítulo no mobile, sobrescrevendo .hero-text p */
@media (max-width: 480px) {
  .hero .hero-text .subtitulo-principal {
    font-size: 1.08rem !important;  /* ajuste o valor que quiser */
    line-height: 1.4 !important;
  }
}

@media (max-width: 768px) and (min-width: 481px) {
  .hero .hero-text .subtitulo-principal {
    font-size: 1.2rem !important;
    line-height: 1.5 !important;
  }
}

/* Centralizar botão no desktop */
@media (min-width: 769px) {
  .hero .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;  /* centraliza tudo */
    text-align: center;   /* centraliza textos também */
  }

  .hero .hero-text .cta-button {
    margin: 20px auto 0 auto !important; /* garante centralização */
    display: inline-flex;
  }
}
