/* Adicionar isto como PRIMEIRAS linhas do CSS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif; /* Substitui 'Arial' */
}
/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #E96629;
    color: white;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid #E96629;
}

.btn:hover {
    background-color: transparent;
    color: #E96629;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #E96629;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #E96629;
}

/* Hero Section */
/* Hero Section - Versão Mega Dinâmica */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end; /* Alinha na base (mobile) */
    justify-content: flex-end; /* Alinha à direita (desktop) */
    overflow: hidden;
    color: white;
}

/* Imagem de fundo */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-social.jpg') center/cover no-repeat;
    z-index: -1;
}




/* Versão Desktop */
@media (min-width: 769px) {
    .hero::after {
        background: linear-gradient(to right, transparent 40%, rgba(0,0,0,0.8) 70%);
    }
    
    .hero-content {
        width: 50%;
        padding-right: 5%;
        padding-bottom: 5%;
        text-align: right;
    }
}

/* Versão Mobile */
@media (max-width: 768px) {
    .hero {
        align-items: flex-end;
        min-height: 500px;
    }
    
    .hero-content {
        width: 100%;
        padding: 20px;
        padding-bottom: 80px;
        text-align: center;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Seção Empresas - Versão Dinâmica */
.companies {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.companies .section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.companies .highlight {
    color: #E96629;
    position: relative;
}

.companies .highlight::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #E96629;
    transform: skewX(-15deg);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: 500;
}

.company-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.company-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll-horizontal 30s linear infinite;
}

.company-logo {
    flex: 0 0 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(233,102,41,0.1);
}

.company-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.company-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .companies .section-title {
        font-size: 2.2rem;
    }
    
    .company-logo {
        flex: 0 0 150px;
        height: 80px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .companies {
        padding: 60px 0;
    }
    
    .companies .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .company-track {
        gap: 20px;
    }
    
    .company-logo {
        flex: 0 0 120px;
        height: 70px;
        padding: 10px;
    }
    
    .company-logo img {
        max-height: 50px;
    }
}

/* Seção Como Funciona - Estilo Atualizado */
.how-it-works {
    padding: 100px 0;
    background-color: #111;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.how-it-works::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(233, 102, 41, 0.05) 0%, transparent 40%);
    z-index: 0;
}

.how-it-works .section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: beige;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
}

.how-it-works .section-title .highlight {
    color: #E96629;
    position: relative;
}

.how-it-works .section-title .highlight::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #E96629;
    transform: skewX(-15deg);
}

.steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.step {
    flex: 0 0 300px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 102, 41, 0.2);
    border-color: #E96629;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(233, 102, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #E96629;
    border: 2px solid rgba(233, 102, 41, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    background: #E96629;
    color: white;
    transform: scale(1.1);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: beige;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
}

.step h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #E96629;
}

.step p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 992px) {
    .step {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 60px 0;
    }
    
    .how-it-works .section-title {
        font-size: 2rem;
    }
    
    .steps {
        gap: 20px;
    }
    
    .step {
        flex: 0 0 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Seção Mentor */
.mentor-section {
    padding: 100px 0;
    background-color: #fff8f5;
    position: relative;
    overflow: hidden;
  }
  
  .mentor-section::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(233, 102, 41, 0.1);
    border-radius: 50%;
    z-index: 0;
  }
  
  .mentor-section .section-title {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 60px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
  }
  
  .mentor-section .highlight {
    color: #E96629;
    position: relative;
  }
  
  .mentor-section .highlight::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #E96629;
    transform: skewX(-15deg);
  }
  
  .mentor-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
  }
  
  .mentor-image {
    flex: 0 0 45%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(233, 102, 41, 0.2);
    transform: rotate(-2deg);
    transition: all 0.5s ease;
  }
  
  .mentor-image:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 25px 25px 0px rgba(233, 102, 41, 0.3);
  }
  
  .mentor-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .mentor-image:hover img {
    transform: scale(1.05);
  }
  
  .mentor-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #E96629;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    transform: rotate(5deg);
    transition: all 0.5s ease;
  }
  
  .mentor-badge span:first-child {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    font-family: 'Montserrat', sans-serif;
  }
  
  .mentor-badge span:last-child {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .mentor-image:hover .mentor-badge {
    transform: rotate(0deg) scale(1.1);
  }
  
  .mentor-info {
    flex: 1;
  }
  
  .mentor-info h3 {
    font-size: 2.2rem;
    color: #E96629;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
  }
  
  .mentor-title {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
  }
  
  .mentor-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #E96629;
  }
  
  .mentor-quote {
    font-size: 1.8rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 40px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-left: 40px;
  }
  
  .mentor-quote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #E96629;
  }
  
  .mentor-quote .counter {
    color: #E96629;
    font-weight: 800;
  }
  
  .mentor-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
  }
  
  .stat-item {
    text-align: center;
    flex: 1;
  }
  
  .stat-item span:first-child {
    font-size: 3rem;
    font-weight: 800;
    color: #E96629;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    min-width: 60px;
  }
  
  .stat-item span:last-child {
    font-size: 1rem;
    color: #E96629;
    font-weight: 600;
  }
  
  .stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    color: #666;
    font-weight: 600;
  }
  
  /* Responsividade */
  @media (max-width: 992px) {
    .mentor-content {
      flex-direction: column;
      gap: 40px;
    }
    
    .mentor-image {
      flex: 0 0 auto;
      width: 80%;
    }
    
    .mentor-section .section-title {
      font-size: 2.5rem;
    }
    
    .mentor-quote {
      font-size: 1.4rem;
    }
    
    .mentor-stats {
      flex-wrap: wrap;
    }
    
    .stat-item {
      flex: 0 0 calc(50% - 15px);
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .mentor-section {
      padding: 60px 0;
    }
    
    .mentor-section .section-title {
      font-size: 2rem;
      margin-bottom: 30px;
    }
    
    .mentor-image {
      width: 100%;
    }
    
    .mentor-badge {
      padding: 15px;
      right: -10px;
    }
    
    .mentor-badge span:first-child {
      font-size: 2rem;
    }
    
    .mentor-info h3 {
      font-size: 1.8rem;
    }
    
    .mentor-quote {
      font-size: 1.2rem;
      padding-left: 20px;
    }
    
    .stat-item {
      flex: 0 0 100%;
    }
    
    .stat-item span:first-child {
      font-size: 2.5rem;
    }
  }
  

/* Oferta Especial - Versão Premium */
.special-offer {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1e1e1e 100%);
    position: relative;
    overflow: hidden;
}

.special-offer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233,102,41,0.1) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
}

.offer-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.offer-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #E96629, #ff9a56, #E96629);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #E96629;
    color: white;
    padding: 8px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(233,102,41,0.5);
}

.offer-title {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.title-part {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
}

.title-part.highlight {
    color: #E96629;
    position: relative;
    display: inline-block;
}

.title-part.highlight::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #E96629, #ff9a56);
    transform: skewX(-15deg);
}

.price-container {
    margin: 40px 0 10px 0;
}

.price-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.old-price, .new-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-size: 1.2rem;
    color: #aaa;
    font-weight: 500;
}

.old-price .price-amount {
    font-size: 2rem;
    color: #999;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #E96629;
    font-weight: 600;
}

.new-price .price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #E96629;
    line-height: 1;
    text-shadow: 0 0 10px rgba(233,102,41,0.3);
}

.price-arrow {
    margin: 10px 0;
}

.arrow-circle {
    width: 40px;
    height: 40px;
    background: rgba(233,102,41,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E96629;
    font-size: 1.2rem;
    border: 2px solid #E96629;
}

.installments {
    text-align: center;
    font-size: 1.1rem;
    color: #aaa;
    margin-top: 20px;
    font-weight: 500;
}

/* Botão CTA Principal */
.offer-cta {
    text-align: center;
    margin: 25px auto 40px auto;
}

.btn-premium {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #E96629, #ff7b38);
    color: white;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(233,102,41,0.4);
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233,102,41,0.6);
}

.btn-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn-premium:hover::before {
    left: 100%;
}

/* Lots Section Styles */
.lots-container {
    margin: 0 0 40px 0;
    padding: 20px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(233, 102, 41, 0.2);
}

.lots-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #E96629;
}

.lots-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.lots-title i {
    font-size: 1.6rem;
}

.lots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.lot-item {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 10px;
    padding: 15px;
    border-left: 3px solid #E96629;
    transition: all 0.3s ease;
}

.lot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(233, 102, 41, 0.2);
}

.lot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.lot-badge {
    background: #E96629;
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
}

.lot-price {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.lot-details p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lot-details i {
    color: #E96629;
    width: 16px;
    text-align: center;
}

/* Combos Especiais */
.combos-container {
    margin: 40px 0;
    padding: 20px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(92, 187, 184, 0.2);
}

.combos-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #5CBBB8;
}

.combos-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.combos-title i {
    font-size: 1.6rem;
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.combo-item {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.combo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(92, 187, 184, 0.2);
}

.combo-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.combo-badge {
    background: #5CBBB8;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.combo-value {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.combo-details {
    padding: 15px;
}

.combo-details p {
    margin: 10px 0;
    font-size: 0.9rem;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
}

.combo-details i {
    color: #5CBBB8;
    width: 16px;
    text-align: center;
}

.combo-price {
    font-weight: 700;
    color: #5CBBB8;
    font-size: 1.2rem;
    margin-top: 15px !important;
    text-align: center;
}

/* Botão Comercial */
.commercial-contact {
    margin: 30px 0;
    text-align: center;
}

.btn-commercial {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 25px;
    background: linear-gradient(90deg, #D45B24, #E96629);
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 91, 36, 0.3);
    text-align: left;
    border: none;
    max-width: 100%;
}

.btn-commercial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 91, 36, 0.5);
    background: linear-gradient(90deg, #E96629, #D45B24);
}

.btn-commercial i {
    font-size: 1.8rem;
    color: white;
}

.btn-commercial span {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.btn-commercial span small {
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

.offer-highlight {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0 30px 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 150px;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(233,102,41,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #E96629;
    border: 2px solid rgba(233,102,41,0.3);
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    background: #E96629;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(233,102,41,0.3);
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #ddd;
    text-align: center;
}

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

/* Responsividade */
@media (max-width: 768px) {
    .offer-box {
        padding: 40px 20px;
    }
    
    .title-part {
        font-size: 2rem;
    }
    
    .new-price .price-amount {
        font-size: 2.8rem;
    }
    
    .old-price .price-amount {
        font-size: 1.6rem;
    }
    
    .lots-grid,
    .combos-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .offer-highlight {
        gap: 20px;
    }
    
    .btn-premium {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .btn-commercial {
        padding: 14px 20px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .combo-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lots-grid,
    .combos-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-badge {
        right: -35px;
        padding: 6px 30px;
        font-size: 0.7rem;
    }
    
    .btn-commercial {
        flex-direction: column;
        gap: 8px;
        padding: 14px;
    }
    
    .combos-container, 
    .lots-container {
        padding: 15px;
    }
    
    .combo-item, 
    .lot-item {
        padding: 12px;
    }
}

/* Combos Especiais */
.combos-container {
    margin: 40px 0;
    padding: 20px;
    background: rgba(30, 30, 30, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(233, 102, 41, 0.2);
}

.combos-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #E96629;
}

.combos-title h3 {
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.combos-title i {
    font-size: 1.6rem;
}

.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.combo-item {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 102, 41, 0.1);
}

.combo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(233, 102, 41, 0.2);
}

.combo-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.combo-badge {
    background: #E96629;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.combo-value {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
}

.combo-details {
    padding: 15px;
}

.combo-details p {
    margin: 10px 0;
    font-size: 0.9rem;
    color: #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
}

.combo-details i {
    color: #E96629;
    width: 16px;
    text-align: center;
}

.combo-price {
    font-weight: 700;
    color: #E96629;
    font-size: 1.2rem;
    margin: 15px 0 10px 0;
    text-align: center;
}

/* Botão WhatsApp Laranja */
.combo-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(90deg, #D45B24, #E96629);
    color: white !important;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    box-shadow: 0 3px 10px rgba(212, 91, 36, 0.3);
}

.combo-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 91, 36, 0.4);
    background: linear-gradient(90deg, #E96629, #D45B24);
}

.combo-whatsapp-btn i {
    font-size: 1.2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .combos-grid {
        grid-template-columns: 1fr;
    }
    
    .combo-whatsapp-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .combo-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .combos-container {
        padding: 15px;
    }
    
    .combo-item {
        padding: 12px;
    }
}
/* Seção de Vídeos */

.videos-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.videos-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.8rem;
    color: #333;
    font-weight: 800;
    text-transform: uppercase;
}

.videos-section .highlight {
    color: #E96629;
    position: relative;
}

.videos-section .highlight::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #E96629;
    transform: skewX(-15deg);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233,102,41,0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card h3 {
    font-size: 1.5rem;
    color: #E96629;
    margin: 20px 20px 10px;
    font-weight: 700;
}

.video-card p {
    font-size: 1rem;
    color: #666;
    margin: 0 20px 20px;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 992px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .videos-section .section-title {
        font-size: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .video-card {
        max-width: 500px;
        margin: 0 auto;
    }
}
/* Estilo do botão na seção de vídeos */
.video-cta {
    text-align: center;
    margin-top: 50px;
}

.video-cta .btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: #E96629;
    color: white;
    border: 2px solid #E96629;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.video-cta .btn-large:hover {
    background-color: transparent;
    color: #E96629;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 102, 41, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .video-cta .btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}
/* SEU CÓDIGO ORIGINAL (MANTIDO INTACTO) */
.immersion-section {
    padding: 80px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.immersion-section .section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.8rem;
    color: #333;
    font-weight: 800;
    text-transform: uppercase;
}

.immersion-section .highlight {
    color: #E96629;
    position: relative;
}

.immersion-section .highlight::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #E96629;
    transform: skewX(-15deg);
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: 500;
}

.immersion-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 40px 0;
}

.immersion-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-horizontal 40s linear infinite;
}

.immersion-photo {
    flex: 0 0 300px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.immersion-photo:hover {
    transform: scale(1.05);
}

.immersion-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.immersion-description {
    max-width: 800px;
    margin: 50px auto 0;
    text-align: center;
}

.immersion-description p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* RESPONSIVIDADE ORIGINAL (MANTIDA) */
@media (max-width: 768px) {
    .immersion-section .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .immersion-photo {
        flex: 0 0 250px;
        height: 160px;
    }
    
    .immersion-description p {
        font-size: 1rem;
    }
}

/* ÚNICA ALTERAÇÃO: BOTÃO ATUALIZADO */
.video-cta .btn-large {
    display: inline-block;
    padding: 18px 40px;
    background: #E96629;
    color: white !important;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 102, 41, 0.4);
    text-decoration: none;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.video-cta .btn-large:hover {
    background: #d45b23;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 102, 41, 0.6);
}

.video-cta .btn-large i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.video-cta .btn-large:hover i {
    transform: translateX(4px);
}

/* Responsividade do botão */
@media (max-width: 768px) {
    .video-cta .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
/* Hero Section - Mega Dinâmica */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg') center/cover no-repeat;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
    margin-left: auto;
    padding-right: 5%;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
}

.text-stroke {
    color: transparent;
    -webkit-text-stroke: 2px #E96629;
    text-stroke: 2px #E96629;
    display: block;
    animation: slideInRight 0.8s ease-out;
}

.text-gradient {
    background: linear-gradient(90deg, #E96629, #ff9a56);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.text-pop {
    display: block;
    color: white;
    transform: scale(1);
    animation: textPop 1s ease-out 0.6s forwards, pulse 2s ease-in-out infinite 1.6s;
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    animation: fadeIn 1s ease-out 0.9s forwards;
    opacity: 0;
}

.highlight-text {
    color: #E96629;
    font-weight: 700;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #E96629;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.highlight-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-container {
    animation: fadeInUp 1s ease-out 1.2s forwards;
    opacity: 0;
}

.btn-pulse {
    padding: 20px 45px;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: #E96629;
    color: white;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(233, 102, 41, 0.4);
}

.btn-pulse:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 102, 41, 0.6);
}

.btn-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-pulse:hover::before {
    transform: translateX(100%);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Animações */
@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes textPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        max-width: 500px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
        margin: auto;
        padding: 0 20px;
        text-align: center;
        position: absolute;
        bottom: 100px;
        left: 0;
        right: 0;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    .btn-pulse {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    .highlight-text::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}


/* Fundo principal do site */
body {
    background-color: #111; /* Preto escuro */
    color: #eee; /* Texto claro para contraste */
}

/* Ajustes para manter contraste */
.container {
    background-color: rgba(255, 255, 255, 0.05); /* Fundo sutil para conteúdo */
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
}

/* Ajuste para seções claras */
.companies, 
.how-it-works, 
.benefits, 
.faq {
    background-color: rgba(30, 30, 30, 0.9); /* Preto mais claro */
    border: 1px solid #333;
}

/* Ajuste para textos */
h1, h2, h3, h4, h5, h6 {
    color: #fff; /* Branco para títulos */
}

p {
    color: #ddd; /* Cinza claro para parágrafos */
}

/* Botões - mantenha sua cor original */
.btn {
    box-shadow: 0 4px 15px rgba(233, 102, 41, 0.6); /* Destaque extra */
}

/* Cards e elementos flutuantes */
.step, 
.benefit-item, 
.faq-item, 
.video-card {
    background-color: #222;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hero section - ajuste o overlay */
.hero::before {
    background-color: rgba(0, 0, 0, 0.7); /* Overlay mais escuro */
}

/* para o carrossel ajustar cor */
.company-logo {
    background: #222; /* Fundo escuro para os logos */
    border: 1px solid #333;
}

.company-logo img {
    filter: grayscale(100%) brightness(1.2); /* Ajuste para melhor visibilidade */
}

.company-logo:hover img {
    filter: grayscale(0%) brightness(1.5);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(233, 102, 41, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

/* para o quem será seu mentor ajustar cor */
.mentor-section {
    background-color: #111111; /* Cor de fundo escura */
    background-image: linear-gradient(to right, #0a0a0a, #1a1a1a); /* Gradiente opcional */
    border-top: 1px solid #E96629; /* Borda superior laranja */
    border-bottom: 1px solid #E96629; /* Borda inferior laranja */
}

/* para o IMERSÃO PRESENCIAL IDENTICKI ajustar cor */

.special-offer {
    background-color: #0d0d0d;
    background-image: 
        radial-gradient(circle at 75% 30%, rgba(233, 102, 41, 0.1) 0%, transparent 40%),
        linear-gradient(to bottom, #0a0a0a, #111111);
    position: relative;
    overflow: hidden;
}

/* para o CONHEÇA NOSSOS RESULTADOSajustar cor */

.videos-section {
    background-color: #0f0f0f;
    background-image: 
        linear-gradient(135deg, #0a0a0a 0%, #1e1e1e 100%);
    border-top: 1px solid #333;
}

/* para o O QUE É A IMERSÃO IDENTICKI? ajustar cor */
.immersion-section {
    background-color: #121212;
    background-image: 
        linear-gradient(to right, #111010, #1a1a1a, #121212);
    position: relative;
}

.mentor-section {
    min-height: 1px; /* Garante que o elemento ocupa espaço mesmo em telas estreitas */
    opacity: 1 !important; /* Override para evitar hide em mobile */
}

.company-track,
.immersion-track {
    display: flex;
    gap: 20px; /* Ajuste conforme seu design */
    width: max-content;
    will-change: transform;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); /* Move metade do track para simular continuidade */
    }
}

.immersion-track {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    animation: scroll 30s linear infinite;
}

/* Container do carrossel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Track do carrossel */
.company-track, .immersion-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

/* Itens do carrossel */
.company-logo, .immersion-photo {
    flex-shrink: 0;
}

/* Garante que a animação seja suave */
@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Garante que os itens do carrossel tenham tamanho consistente no mobile */
.company-logo, .immersion-photo {
    flex: 0 0 auto;
    width: 150px; /* ou o tamanho desejado */
    height: auto;
}

/* Otimiza a renderização no mobile */
.carousel-container {
    overflow: hidden;
    -webkit-overflow-scrolling: touch; /* Suave no iOS */
    transform: translateZ(0); /* Aceleração de hardware */
}

.company-track, .immersion-track {
    display: flex;
    will-change: transform;
    backface-visibility: hidden; /* Melhora a renderização */
}
/* FORÇA imagens coloridas em todos os estados */
.company-track .company-logo img,
.company-track .company-logo:hover img,
.company-track .js-clone img,
.company-track .js-clone:hover img {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Estilos para o Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Esconde a imagem mobile por padrão */
.mobile-img {
    display: none;
}

/* Efeito de sobreposição para melhor legibilidade */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Versão Mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .desktop-img {
        display: none;
    }
    
    .mobile-img {
        display: block;
    }
}


/* Reset e estilos globais - FONTE ATUALIZADA */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif; /* Fonte clean igual ao exemplo */
}

/* Hero Section - MANTIDO O LAYOUT ORIGINAL, APENAS FONTES SIMPLIFICADAS */
@media (max-width: 768px) {
  .hero {
    /* TUDO MANTIDO IGUAL (posição, dimensões, fundo) */
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    padding: 0;
    margin: 0;
    background: url('sua-imagem-mobile.jpg') center/cover no-repeat;
    position: relative;
  }

  .hero-content {
    /* POSICIONAMENTO ORIGINAL PRESERVADO */
    width: 100%;
    padding: 0 15px 0 !important;
    margin: 0 !important;
    text-align: center;
    position: absolute;
    bottom: 0;
  }

  /* TÍTULO SIMPLIFICADO */
  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 5px !important;
    line-height: 1.3;
    color: #fff; /* Branco para contraste */
    font-weight: 600; /* Semi-bold como no exemplo */
    /* REMOVIDOS: text-shadow, transform, background */
  }

  /* SUBTÍTULO SIMPLIFICADO */
  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 10px !important;
    color: rgba(255,255,255,0.9); /* Branco com leve transparência */
    font-weight: 400; /* Regular */
    /* REMOVIDOS: text-shadow, transform */
  }

  /* BOTÃO DINÂMICO (ÚNICO ELEMENTO COM EFEITO) */
  .btn-pulse {
    padding: 8px 16px;
    font-size: 0.85rem;
    background-color: #E96629;
    color: white;
    border-radius: 4px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 10px !important;
  }

  .btn-pulse:hover {
    background-color: #d45b22;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }

  .hero-scroll-indicator {
    /* MANTIDO O POSICIONAMENTO ORIGINAL */
    position: absolute;
    bottom: 5px !important;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
  }
}

/* REMOVIDOS TODOS OS EFEITOS EXTRAS */
.hero::before,
.hero::after,
.hero-content::before,
.hero-content::after {
    display: none !important;
}
/* Remove TODOS os quadros de fundo */
.hero::before,
.hero::after,
.hero-content::before,
.hero-content::after {
    display: none !important;
    background: none !important;
    box-shadow: none !important;
    content: none !important;
}

/* Garante que o fundo fique limpo */
.hero {
    background-color: transparent !important;
}

.hero {
    background: url('imagens/Identicki\ Land\ Page.png') center/cover no-repeat;
}

/* Para telas menores (celulares) */
@media (max-width: 768px) {
    .hero {
        background: url('imagens/terceiro.png') center/cover no-repeat !important;
    }
}

/* ========== SEÇÃO BENEFÍCIOS - VERSÃO DINÂMICA ========== */
.benefits {
    padding: 100px 0;
    background-color: #111;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.benefits::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(233, 102, 41, 0.05) 0%, transparent 40%);
    z-index: 0;
}

.benefits .section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: beige;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
}

.benefits .section-title .highlight {
    color: #E96629;
    position: relative;
}

.benefits .section-title .highlight::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #E96629;
    transform: skewX(-15deg);
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.benefit-item {
    flex: 0 0 300px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 40px 30px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(233, 102, 41, 0.2);
    border-color: #E96629;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(233, 102, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #E96629;
    border: 2px solid rgba(233, 102, 41, 0.3);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: #E96629;
    color: white;
    transform: scale(1.1);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: beige;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    position: relative;
}

.benefit-item h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #E96629;
}

.benefit-item p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

/* Responsividade */
@media (max-width: 992px) {
    .benefit-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 60px 0;
    }
    
    .benefits .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        gap: 20px;
    }
    
    .benefit-item {
        flex: 0 0 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}
/* ========== SEÇÃO FAQ ========== */
.faq {
    padding: 100px 0;
    background-color: #111;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #333;
}

.faq::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233, 102, 41, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.faq .section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
    color: beige;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.faq .section-title .highlight {
    color: #E96629;
    position: relative;
}

.faq .section-title .highlight::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #E96629;
    transform: skewX(-15deg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #E96629;
    box-shadow: 0 5px 20px rgba(233, 102, 41, 0.1);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(40, 40, 40, 0.6);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(233, 102, 41, 0.1);
}

.faq-question span:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: beige;
    flex: 1;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #E96629;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: rgba(20, 20, 20, 0.8);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px;
}

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

.faq-answer p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ========== RODAPÉ ========== */
footer {
    background: #0a0a0a;
    padding: 70px 0 30px;
    position: relative;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: beige;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: #E96629;
    transform: translateY(-5px);
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.footer-contact i {
    color: #E96629;
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq .section-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question span:first-child {
        font-size: 1rem;
    }
}
/* Container dos quadradinhos (mantido) */
.data-local-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center; /* Centraliza horizontalmente */
}

/* Quadradinhos - estilo igual ao do site de referência */
.quadradinho {
    background: rgba(0, 0, 0, 0);
    border: 1px solid #D45B24; /* Roxo neon igual ao do site */
    border-radius: 6px; /* Cantos arredondados similares */
    padding: 8px 15px;
    color: white;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px #D45B24; /* Glow roxo sutil */
    white-space: nowrap; /* Impede quebra de texto */
}

/* Efeito hover (opcional) */
.quadradinho:hover {
    box-shadow: 0 0 15px #D45B24; /* Brilho mais forte */
}

/* Ajuste para mobile (se necessário) */
@media (max-width: 600px) {
    .data-local-container {
        gap: 8px; /* Reduz o espaço entre os quadradinhos */
    }
    .quadradinho {
        padding: 6px 10px; /* Mais compacto */
        font-size: 12px; /* Texto um pouco menor */
    }
}
/* REMOVE TODOS OS OVERLAYS DO HERO (100% garantido) */
.hero::before,
.hero::after,
.hero-bg-img::after {
    display: none !important;
    background: none !important;
    opacity: 1 !important;
}

/* Garante que as imagens fiquem 100% visíveis */
.hero-bg-img {
    opacity: 1 !important;
}
/* ===== BOTÃO HERO - VERSÃO ÚNICA (PC E MOBILE IGUAIS) ===== */
.btn-pulse {
    padding: 20px 45px !important; /* Tamanho original do desktop */
    font-size: 1.3rem !important;
    border-radius: 50px !important;
    /* Mantém todos os outros estilos originais */
}

/* Remove TODAS as media queries que alteram o botão */
@media (max-width: 768px) {
    .btn-pulse {
        /* Remove qualquer estilo específico para mobile */
        transform: none !important;
        box-shadow: 0 10px 30px rgba(233, 102, 41, 0.4) !important;
    }
    
    /* Opcional: ajuste de alinhamento se necessário */
    .hero-content {
        padding-bottom: 40px !important;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.6rem !important;   /* Original: 1.8rem (só reduz 0.1rem) */
        line-height: 1.50 !important;   /* Original: 1.3 (compacta levemente) */
        margin-bottom: 5px !important;  /* Original: 5px (mantém igual) */
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;   /* Original: 0.85rem (redução sutil) */
        line-height: 1.35 !important;   /* Original: 1.3 (pouca diferença) */
        margin-top: 10px !important;    /* Espaço controlado */
    }
}
/* Contador fixo */
.countdown-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, #5CBBB8 0%, #3A8A87 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  
  /* Container */
  .countdown-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .countdown-header {
    display: flex;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
  }
  
  .countdown-header i {
    margin-right: 8px;
  }
  
  .countdown-timer {
    display: flex;
    align-items: center;
  }
  
  .countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 3px;
  }
  
  .countdown-item span:first-child {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 3px 8px;
    min-width: 40px;
    text-align: center;
  }
  
  .countdown-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    margin-top: 2px;
  }
  
  .countdown-separator {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0 2px;
    align-self: flex-end;
    padding-bottom: 5px;
  }
  
  /* === ESSENCIAL: Espaço no topo da CAPA === */
  .hero, .banner, .capa, .topo, .main-section {
    margin-top: 60px;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .countdown-container {
      flex-direction: column;
      gap: 5px;
      padding: 8px 10px;
    }
  
    .countdown-item span:first-child {
      font-size: 1.1rem;
      min-width: 35px;
    }
  
    /* Mais espaço no mobile */
    .hero, .banner, .capa, .topo, .main-section {
      margin-top: 90px;
    }
  }
  
  
/* SEÇÃO DE TRANSFORMAÇÃO - VERSÃO FINAL */
.transformation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
  }
  
  .transformation-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(233, 102, 41, 0.08) 0%, transparent 50%);
    z-index: 0;
  }
  
  /* TÍTULO PRINCIPAL - IDENTIDADE VISUAL */
  .transformation-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    text-align: center;
    margin: 0 auto 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .transformation-section .section-title .highlight {
    color: #E96629;
    position: relative;
  }
  
  .transformation-section .section-title .highlight::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #E96629;
    transform: skewX(-15deg);
  }
  
  /* CONTEÚDO EMOCIONAL */
  .emotional-text {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  
  .emotional-lead, .emotional-climax {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.4;
  }
  
  .emotional-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 25px;
  }
  
  .highlight-text {
    color: #E96629;
    position: relative;
  }
  
  .highlight-text::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: currentColor;
    transform: skewX(-15deg);
    opacity: 0.7;
  }
  
  /* COMPARAÇÃO ANTES/DEPOIS */
  .before-after-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 60px auto;
    position: relative;
    z-index: 2;
  }
  
  .before-after {
    width: 100%;
    max-width: 450px;
    position: relative;
  }
  
  .image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border: 1px solid #333;
    transition: all 0.4s ease;
  }
  
  .image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(233, 102, 41, 0.2);
  }
  
  .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 350px;
    object-fit: cover;
  }
  
  .label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(233, 102, 41, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  /* STICKER DE RESULTADO */
  .result-sticker {
    background: linear-gradient(135deg, #E96629 0%, #ff7b38 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(233, 102, 41, 0.4);
    display: inline-block;
    margin: 25px auto 0;
    position: relative;
    z-index: 3;
    border: 2px solid rgba(255, 255, 255, 0.1);
  }
  
  .result-sticker span:first-child {
    font-size: 2.5rem;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .result-sticker span:last-child {
    font-size: 0.9rem;
    display: block;
    letter-spacing: 2px;
    opacity: 0.9;
  }
  
  .result-sticker:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 102, 41, 0.6);
    transition: all 0.3s ease;
  }
  
  /* CARDS DE TRANSFORMAÇÃO */
  .transformation-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 80px auto;
    position: relative;
    z-index: 2;
  }
  
  .t-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #333;
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .t-card:hover {
    transform: translateY(-10px);
    border-color: #E96629;
    box-shadow: 0 15px 40px rgba(233, 102, 41, 0.2);
  }
  
  .t-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #E96629;
    background: rgba(233, 102, 41, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(233, 102, 41, 0.3);
    transition: all 0.3s ease;
  }
  
  .t-card:hover .t-icon {
    background: #E96629;
    color: white;
    transform: rotate(15deg) scale(1.1);
  }
  
  .t-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
  }
  
  .t-card h3::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #E96629;
  }
  
  .t-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #aaa;
    line-height: 1.7;
  }
  
  /* BOTÃO CTA */
  .transformation-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 2;
  }
  
  .cta-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #E96629, #ff7b38);
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 102, 41, 0.4);
    position: relative;
    overflow: hidden;
  }
  
  .cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
  }
  
  .cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 102, 41, 0.6);
  }
  
  .cta-btn:hover::before {
    left: 100%;
  }
  
  .cta-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
  }
  
  .cta-btn:hover i {
    transform: translateX(5px);
  }
  
  /* RESPONSIVIDADE */
  @media (max-width: 992px) {
    .transformation-section .section-title {
      font-size: 2.5rem;
    }
    
    .emotional-lead, .emotional-climax {
      font-size: 1.5rem;
    }
    
    .transformation-cards {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
  }
  
  @media (max-width: 768px) {
    .transformation-section {
      padding: 70px 0;
    }
    
    .transformation-section .section-title {
      font-size: 2rem;
      width: 90%;
    }
    
    .emotional-text {
      padding: 0 20px;
    }
    
    .emotional-text p {
      font-size: 1rem;
    }
    
    .before-after {
      max-width: 100%;
      padding: 0 20px;
    }
    
    .t-card {
      padding: 30px 20px;
    }
    
    .cta-btn {
      padding: 16px 35px;
      font-size: 1rem;
      width: 90%;
      max-width: 350px;
    }
    
    .result-sticker {
      padding: 12px 25px;
      margin-top: 20px;
    }
    
    .result-sticker span:first-child {
      font-size: 2rem;
    }
    
    .result-sticker span:last-child {
      font-size: 0.8rem;
    }
  }

/* SEÇÃO IMAGEM DE INFLUÊNCIA */
.influence-power-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    color: white;
  }
  
  .influence-power-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(233, 102, 41, 0.1) 0%, transparent 60%);
    z-index: 0;
  }
  
  .influence-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    text-align: center;
    padding: 0 20px;
  }
  
  .influence-text {
    flex: 1 1 300px;
  }
  
  .influence-image {
    flex: 1 1 300px;
  }
  
  .influence-image img {
    max-width: 100%;
    border-radius: 10px;
  }
  
  /* FRASE DE IMPACTO */
  .impact-phrase {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 500;
  }
  
  /* DESTAQUE */
  .power-highlight {
    margin: 60px 0 40px;
  }
  
  .power-highlight p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .power-highlight h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E96629;
    margin: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
  }
  
  .power-highlight h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #E96629;
    transform: skewX(-15deg);
  }
  
  /* BOTÃO CTA */
  .power-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #E96629, #ff7b38);
    color: white;
    padding: 20px 45px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(233, 102, 41, 0.4);
    margin-top: 30px;
  }
  
  .power-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 102, 41, 0.6);
  }
  
  .power-cta i {
    margin-left: 10px;
    transition: transform 0.3s ease;
  }
  
  .power-cta:hover i {
    transform: translateX(5px);
  }
  
  /* CONTROLE DE VISIBILIDADE */
  .desktop-only {
    display: block;
  }
  
  .mobile-only {
    display: none;
  }
  
  /* RESPONSIVIDADE */
  @media (max-width: 992px) {
    .impact-phrase {
      font-size: 1.5rem;
    }
  
    .power-highlight h2 {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 768px) {
    .influence-power-section {
      padding: 80px 0;
    }
  
    .impact-phrase {
      font-size: 1.3rem;
      padding: 0 10px;
    }
  
    .power-highlight h2 {
      font-size: 1.6rem;
    }
  
    .power-cta {
      padding: 16px 35px;
      font-size: 1rem;
    }
  
    .desktop-only {
      display: none !important;
    }
  
    .mobile-only {
      display: block !important;
      margin: 20px 0;
    }
  }
  
  @media (max-width: 480px) {
    .impact-phrase {
      font-size: 1.1rem;
    }
  
    .power-highlight h2 {
      font-size: 1.4rem;
    }
  
    .power-highlight p {
      font-size: 1rem;
    }
  }
  
  /* Estilo herdado da seção mentor para imagem */
.estilo-mentor {
    flex: 0 0 45%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(233, 102, 41, 0.2);
    transform: rotate(-2deg);
    transition: all 0.5s ease;
  }
  
  .estilo-mentor:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 25px 25px 0px rgba(233, 102, 41, 0.3);
  }
  
  .estilo-mentor img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .estilo-mentor:hover img {
    transform: scale(1.05);
  }
  
  /* Responsivo */
  @media (max-width: 992px) {
    .estilo-mentor {
      width: 80%;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 768px) {
    .estilo-mentor {
      width: 100%;
    }
  }
/* Estilo para imagem da seção Imagem de Influência */
.influence-image {
    flex: 0 0 45%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(233, 102, 41, 0.2);
    transform: rotate(-2deg);
    transition: all 0.5s ease;
    z-index: 1;
  }
  
  .influence-image:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 25px 25px 0px rgba(233, 102, 41, 0.3);
  }
  
  .influence-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .influence-image:hover img {
    transform: scale(1.05);
  }
  .influence-power-section {
    background: transparent !important;
  }
  
  .container {
    background: transparent !important;
  }
  .turquoise-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #4EA1A0;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 0;
  }
  
  @keyframes pulseGlow {
    0%, 100% {
      transform: scale(1);
      opacity: 0.6;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.8;
    }
  }
      
/* Brilho turquoise no lado direito da seção */
.influence-power-section::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -50px; /* posiciona fora um pouco pra parecer brilho vindo do lado */
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background: #4EA1A0;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
  }
  /* Brilho turquoise no lado direito da seção de vídeos */
.videos-section::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    width: 130px;
    height: 130px;
    background: #4EA1A0;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
}
/* Luz laranja maior no lado esquerdo da seção de vídeos */
.videos-section::before {
    content: "";
    position: absolute;
    top: 40%;
    left: -100px;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background: #E96629;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: 1;
    animation: pulseGlow 6s ease-in-out infinite;
}
@keyframes infiniteCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(var(--carousel-translate, -100%)); }
  }
  [class*="-track"] {
    animation: infiniteCarousel var(--carousel-duration, 20s) linear infinite;
  }
/* Efeito de Luz Azul Gigante - Lado Direito */
.special-offer::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30%;
    width: 80%;
    height: 200%;
    background: 
        radial-gradient(ellipse at center, 
            rgba(100, 150, 255, 0.5) 0%, 
            rgba(0, 80, 200, 0.3) 30%, 
            transparent 70%);
    filter: blur(100px);
    z-index: 0;
    animation: giant-pulse 12s infinite alternate;
    transform: rotate(15deg);
    opacity: 0.8;
}

@keyframes giant-pulse {
    0% {
        transform: rotate(15deg) scale(1);
        opacity: 0.6;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        transform: rotate(15deg) scale(1.3);
        opacity: 0.7;
    }
}

/* Ajuste para não interferir no conteúdo */
.offer-box {
    position: relative;
    z-index: 10; /* Garante que o conteúdo fique acima da luz */
}
/* Efeito de luzes no fundo */
.transformation-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      /* Luz laranja no lado direito */
      radial-gradient(circle at 80% 50%, 
        rgba(233, 102, 41, 0.15) 0%, 
        transparent 40%),
      /* Luz azul no lado esquerdo */
      radial-gradient(circle at 20% 30%, 
        rgba(41, 149, 233, 0.15) 0%, 
        transparent 40%);
    z-index: 0;
    pointer-events: none;
    animation: lightPulse 12s infinite alternate;
  }
  
  @keyframes lightPulse {
    0% {
      opacity: 0.7;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.7;
    }
  }
  /* Efeito de luzes coloridas no fundo */
.companies::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Luz laranja no canto direito */
        radial-gradient(circle at 85% 30%, 
            rgba(233, 102, 41, 0.15) 0%, 
            rgba(233, 102, 41, 0) 40%),
        /* Luz azul no canto esquerdo */
        radial-gradient(circle at 15% 70%, 
            rgba(41, 149, 233, 0.15) 0%, 
            rgba(41, 149, 233, 0) 40%);
    z-index: 0;
    pointer-events: none;
    animation: colorPulse 16s infinite alternate;
}

@keyframes colorPulse {
    0% {
        opacity: 0.6;
        background-size: 100% 100%, 100% 100%;
    }
    50% {
        opacity: 0.9;
        background-size: 120% 120%, 120% 120%;
    }
    100% {
        opacity: 0.6;
        background-size: 100% 100%, 100% 100%;
    }
}

/* Ajuste para garantir que o conteúdo fique acima das luzes */
.companies .section-title,
.companies .section-subtitle,
.company-carousel {
    position: relative;
    z-index: 1;
}
/* Efeito de luzes coloridas para a seção de benefícios */
.benefits::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Luz laranja no canto superior direito */
        radial-gradient(circle at 80% 20%, 
            rgba(233, 102, 41, 0.12) 0%, 
            transparent 50%),
        /* Luz azul no canto inferior esquerdo */
        radial-gradient(circle at 20% 80%, 
            rgba(41, 149, 233, 0.12) 0%, 
            transparent 50%);
    z-index: 0;
    pointer-events: none;
    animation: benefitsGlow 18s infinite alternate;
}

@keyframes benefitsGlow {
    0% {
        opacity: 0.7;
        background-size: 100% 100%, 100% 100%;
    }
    50% {
        opacity: 0.9;
        background-size: 120% 120%, 120% 120%;
    }
    100% {
        opacity: 0.7;
        background-size: 100% 100%, 100% 100%;
    }
}

/* Ajuste para o efeito existente */
.benefits::before {
    background: radial-gradient(circle at 70% 20%, 
              rgba(233, 102, 41, 0.08) 0%, 
              transparent 50%);
}
/* Estilos do botão flutuante */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    transition: all 0.3s ease;
  }
  
  .floating-btn:hover {
    transform: translateY(-5px);
  }
  
  .btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25D366, #128C7E); /* Verde WhatsApp */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .btn-content:hover {
    width: 200px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  }
  
  .btn-content i {
    font-size: 28px;
    position: absolute;
    left: 16px;
    transition: all 0.3s ease;
  }
  
  .btn-content:hover i {
    left: 20px;
  }
  
  .btn-text {
    opacity: 0;
    width: 0;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-left: 10px;
    white-space: nowrap;
  }
  
  .btn-content:hover .btn-text {
    opacity: 1;
    width: auto;
    margin-left: 40px;
  }
  
  /* Efeito de pulso */
  .floating-btn .btn-content::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .floating-btn .btn-content:hover::after {
    opacity: 1;
    transform: scale(1.5);
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .floating-btn {
      bottom: 20px;
      right: 20px;
    }
    
    .btn-content {
      width: 50px;
      height: 50px;
    }
    
    .btn-content i {
      font-size: 24px;
      left: 13px;
    }
  }
  /* ===== SEÇÃO IMERSÃO ===== */
.imersao-section {
    padding: 100px 0;
    background: #121212;
    position: relative;
    overflow: hidden;
  }
  
  .imersao-section::before {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(233, 102, 41, 0.1);
    border-radius: 50%;
    z-index: 0;
  }
  
  .imersao-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .imersao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .imersao-item {
    background: #1a1a1a;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-left: 4px solid #E96629;
  }
  
  .imersao-item:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 0 rgba(233, 102, 41, 0.2);
  }
  
  .imersao-icon {
    color: #E96629;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .imersao-item-title {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  
  .imersao-cta {
    text-align: center;
    margin-top: 60px;
  }
  
  .cta-button {
    display: inline-block;
    background: #E96629;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .cta-button:hover {
    background: #ff7b3e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 102, 41, 0.3);
  }
  
  /* Animação pulsante */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  .pulse {
    animation: pulse 2s infinite;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .imersao-grid {
      grid-template-columns: 1fr;
    }
    
    .imersao-item {
      padding: 25px;
    }
  }
  body {
    overflow-x: clip; /* melhor do que hidden para não travar animações/carrosséis */
  }
  
  html {
    width: 100%;
    overflow-x: clip;
  }
  
  /* Também útil pra prevenir elementos estourando a largura */
  * {
    box-sizing: border-box;
  }



    /* css da página do formulário*/

/* Estilos Gerais */
body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1e1e1e 100%);
    color: white;
    padding: 20px;
    line-height: 1.6;
    margin: 0;
}

.form-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(20, 20, 20, 0.9);
    border-radius: 15px;
    border: 1px solid #E96629;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.form-header h2 {
    color: #E96629;
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-header p {
    color: #aaa;
}

/* Campos do Formulário */
.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ddd;
}

.optional-text {
    color: #aaa;
    font-weight: normal;
    font-size: 0.8em;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(30,30,30,0.8);
    border: 1px solid #444;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #E96629;
    outline: none;
    box-shadow: 0 0 0 2px rgba(233, 102, 41, 0.2);
}

/* Radio Buttons Estilizados */
.custom-radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.custom-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-btn {
    height: 20px;
    width: 20px;
    border: 2px solid #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.radio-btn::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #E96629;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-radio input:checked ~ .radio-btn {
    border-color: #E96629;
}

.custom-radio input:checked ~ .radio-btn::after {
    opacity: 1;
}

/* Botão de Continuar */
.btn-continue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(90deg, #E96629, #D45B24);
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 10px;
}

.btn-continue:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 91, 36, 0.4);
}

.btn-continue:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Mensagens de Status */
.status-message {
    text-align: center;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    background: rgba(92, 187, 184, 0.2);
}

.status-message i {
    margin-right: 10px;
}

.hidden {
    display: none;
}

#loading {
    color: #5CBBB8;
}

#formSuccess {
    color: #4CAF50;
}

/* Responsividade */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
        margin: 20px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .custom-radio-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-continue {
        width: 100%;
        justify-content: center;
    }
}
/* Garante que o body e html ocupem toda a largura e altura */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* evita scroll lateral em telas pequenas */
}

/* Faz os elementos principais ocuparem 100% da largura */
.container, .imersao-container, section, header, footer, main {
  width: 100%;
  box-sizing: border-box;
}

/* Evita que elementos filhos quebrem o layout */
* {
  box-sizing: border-box;
}
