/* Reset e configurações básicas - Coaching v20250911-1253 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Guardian Egyptian', Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2.2rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Highlights */
.highlight-gold {
    color: #d4af37;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.highlight-blue {
    color: #172e4d;
    font-weight: 700;
}

/* Badges */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.badge-icon {
    font-size: 1.2rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.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: left 0.5s;
}

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

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}


.btn-secondary {
    background: linear-gradient(135deg, #172e4d 0%, #0f1f35 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(23, 46, 77, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(23, 46, 77, 0.4);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 12px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav {
    padding: 1rem 0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: auto;
    height: 65px;
    max-width: 220px;
    object-fit: contain;
    border-radius: 0 !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f1f3f4 100%);
    padding: 120px 0 80px;
    margin-top: 90px;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(23, 46, 77, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 2rem 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat {
    text-align: center;
    padding: 10px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-container-main {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 0;
    padding-bottom: 39.375%; /* 16:9 aspect ratio for 700px width */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin: 2rem auto;
    border: 3px solid rgba(212, 175, 55, 0.3);
}

.video-container-main iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-cta {
    margin-top: 2.5rem;
}

.hero-guarantee {
    margin-top: 1rem;
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    color: #2c3e50;
    font-size: 2.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 2px;
}

/* Diferencial Section */
.diferencial {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.diferencial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.diferencial-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f8f9fa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.diferencial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
}


.diferencial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
}

.diferencial-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.diferencial-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.diferencial-item p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Aprovados Section */
.aprovados {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.aprovados-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 4rem;
}

.aprovados-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.aprovados-image:hover {
    transform: scale(1.02);
}

.outros-aprovados h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #2c3e50;
    font-size: 2rem;
}

.aprovados-destaque {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 2.5rem;
}

.aprovado-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border-left: 5px solid #d4af37;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


.aprovado-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.concurso {
    color: #172e4d;
    font-weight: 700;
}

.aprovados-footer {
    text-align: center;
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    font-weight: 700;
}

/* Como Funciona Section */
.como-funciona {
    padding: 100px 0;
    background: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.processo-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #d4af37;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.step-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.step-content p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Metodologia Section */
.metodologia {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.metodologia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.metodologia-coluna {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #d4af37;
}

.coluna-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.coluna-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 2px;
}

.tecnicas-list,
.desenvolvimento-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tecnica-item,
.desenvolvimento-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.tecnica-item:hover,
.desenvolvimento-item:hover {
    transform: translateX(5px);
    background: #f1f3f4;
}

.tecnica-icon,
.desenvolvimento-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tecnica-item span:last-child,
.desenvolvimento-item span:last-child {
    font-weight: 600;
    color: #2c3e50;
}

/* Benefícios Section */
.beneficios {
    padding: 100px 0;
    background: #fff;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.beneficio-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.beneficio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #172e4d 0%, #0f1f35 100%);
}

.beneficio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(23, 46, 77, 0.3);
}

.beneficio-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.beneficio-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.beneficio-item p {
    color: #555;
    line-height: 1.6;
}

/* Incluso Section */
.incluso {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.incluso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.incluso-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #f8f9fa;
}


.incluso-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.incluso-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.incluso-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.incluso-item p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.incluso-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.nao-incluso {
    margin-top: 4rem;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    border-left: 5px solid #e74c3c;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.nao-incluso h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.nao-incluso p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Depoimentos Section */
.depoimentos {
    padding: 100px 0;
    background: #fff;
}

.depoimentos-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.depoimentos-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    margin-bottom: 5rem;
}

.depoimento-video {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #f8f9fa;
    transition: transform 0.3s ease;
}

.depoimento-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.depoimento-video h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.4rem;
    text-align: center;
}

.depoimento-video iframe {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.mais-depoimentos {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid #e9ecef;
}

.mais-depoimentos h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2rem;
}

.depoimentos-grid-pequenos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.depoimento-pequeno {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.depoimento-pequeno h4 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
    font-size: 1.2rem;
}

.depoimento-pequeno iframe {
    width: 100%;
    height: 220px;
    border-radius: 10px;
}

/* Para quem não é indicado Section */
.nao-indicado {
    padding: 100px 0;
    background: linear-gradient(135deg, #fee 0%, #fdd 100%);
}

.nao-indicado-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 4rem;
}

.nao-indicado-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #e74c3c;
}

.nao-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.nao-indicado-item p {
    margin: 0;
    font-weight: 500;
    color: #555;
}

.indicado-para {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #27ae60;
}

.indicado-para h3 {
    color: #27ae60;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.8rem;
}

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

.indicado-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fff8;
    border-radius: 10px;
}

.sim-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #27ae60;
}

.indicado-item p {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
}

/* Investimento Section */
.investimento {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.investimento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.investimento .container {
    position: relative;
    z-index: 2;
}

.investimento .section-title {
    color: white;
    margin-bottom: 3rem;
}

.investimento-explicacao {
    text-align: center;
    margin-bottom: 2.5rem;
}

.explicacao-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.salario-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.salario-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    flex: 1;
    min-width: 250px;
}

.salario-label {
    display: block;
    font-size: 0.9rem;
    color: #ecf0f1;
    margin-bottom: 8px;
}

.salario-valor {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #d4af37;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.preco-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 2rem;
    align-items: center;
}

.preco-principal {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.preco-de {
    font-size: 1.1rem;
    color: #bdc3c7;
    text-decoration: line-through;
    display: block;
    margin-bottom: 8px;
}

.preco-por {
    font-size: 3.5rem;
    font-weight: 800;
    color: #d4af37;
    margin: 10px 0;
    text-shadow: 0 4px 8px rgba(212, 175, 55, 0.4);
    display: block;
}

.preco-parcelado {
    font-size: 1.2rem;
    color: #ecf0f1;
    font-weight: 600;
}

.roi-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.roi-info h3 {
    margin-bottom: 1.5rem;
    color: #ecf0f1;
    text-align: center;
    font-size: 1.4rem;
}

.roi-item {
    margin-bottom: 1.5rem;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.roi-item:last-child {
    margin-bottom: 0;
}

.roi-calculo {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-top: 5px;
}

.cta-final-coaching {
    text-align: center;
    margin-bottom: 3rem;
}

.cta-garantia {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #ecf0f1;
    font-weight: 600;
}

.garantia-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border-left: 4px solid #27ae60;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.garantia-info p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ecf0f1;
}

/* FAQ Section Premium */
.faq {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    margin-bottom: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid #f8f9fa;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
    padding: 30px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #fefdf8;
}

.faq-question h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
}

.faq-toggle {
    font-size: 2rem;
    font-weight: bold;
    color: #d4af37;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

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

.faq-answer {
    padding: 0 35px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fefdf8;
}

.faq-item.active .faq-answer {
    padding: 0 35px 30px;
    max-height: 600px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* CTA Final Section Premium */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final-content {
    position: relative;
    z-index: 2;
}

.cta-final-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-final-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-final-buttons {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    margin-bottom: 2.5rem;
}

.cta-final .btn-primary {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-final .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.5);
}

.cta-final .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.cta-final .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-final-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Footer Premium */
.footer {
    background: #2c3e50;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(1.1);
}

.footer-info h3 {
    color: #ecf0f1;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.footer-info p {
    color: #bdc3c7;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: #ecf0f1;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-contact p {
    color: #bdc3c7;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
    font-size: 1rem;
}

/* Responsividade Premium */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.3rem;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .stat {
        padding: 15px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .stat:last-child {
        border-bottom: none;
    }

    .video-container-main {
        max-width: 100%;
        padding-bottom: 56.25%;
    }

    .aprovados-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .diferencial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .metodologia-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .processo-steps {
        gap: 30px;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        align-items: center;
    }
    
    .step-number {
        align-self: center;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .incluso-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .depoimentos-videos {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .depoimento-video iframe {
        height: 220px;
    }

    .depoimentos-grid-pequenos {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .depoimento-pequeno iframe {
        height: 180px;
    }

    .salario-info {
        flex-direction: column;
        gap: 15px;
    }

    .salario-item {
        min-width: auto;
    }

    .preco-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .preco-por {
        font-size: 3.5rem;
    }

    .cta-final-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-final-content h2 {
        font-size: 2.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .nav .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-cta {
        order: -1;
    }

    .section-title {
        font-size: 2.3rem;
    }
}

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-large {
        padding: 18px 30px;
        font-size: 1.2rem;
    }

    .preco-por {
        font-size: 3rem;
    }

    .cta-final-content h2 {
        font-size: 2rem;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .diferencial-icon,
    .beneficio-icon,
    .incluso-icon {
        font-size: 3rem;
    }
}

/* Animações Premium */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.diferencial-item,
.beneficio-item,
.incluso-item,
.depoimento-video {
    animation: fadeInUp 0.6s ease-out;
}

.step:nth-child(odd) {
    animation: slideInLeft 0.6s ease-out;
}

.step:nth-child(even) {
    animation: slideInRight 0.6s ease-out;
}

/* Scroll suave para links internos */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Estados de foco para acessibilidade */
.btn:focus,
.faq-question:focus {
    outline: 3px solid #d4af37;
    outline-offset: 2px;
}

/* Otimizações de performance */
.video-container-main iframe,
.depoimento-video iframe,
.depoimento-pequeno iframe {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 200px !important;
}

img {
    max-width: 100%;
    height: auto;
}

/* Melhorias de contraste para acessibilidade */
.hero-badge,
.btn-primary,
.incluso-badge {
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Efeitos de hover premium */
.diferencial-item:hover .diferencial-icon,
.beneficio-item:hover .beneficio-icon,
.incluso-item:hover .incluso-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Loading states para vídeos */
.video-container-main,
.depoimento-video iframe,
.depoimento-pequeno iframe {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
