/* Estilo para steps responsivo e centralizado */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
}
.step-item {
    text-align: center;
    margin-bottom: 0;
}
.step-title {
    font-weight: 700;
    font-size: 1.08rem;
    color: var(--primary-color);
    margin-bottom: 0px;
    margin-top: 0px;
    line-height: 1.1;
}
.step-desc {
    font-size: 1rem;
    color: #444;
    margin-bottom: 6px;
    margin-top: 0px;
    line-height: 1.2;
}
@media (max-width: 600px) {
    .step-title {
        font-size: 1rem;
    }
    .step-desc {
        font-size: 0.97rem;
    }
}
/* Botão centralizado entre cards e investidores */
.cta-out-middle {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    margin: 50px 0 30px 0;
    position: relative;
    z-index: 2;
}
/* Estilos Gerais e Reset */
:root {
    --primary-color: #17a2b8; /* Azul ChamadoPro */
    --accent-color: #ff8c00;  /* Laranja para destaque */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --soft-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    --logo-size: 2.2rem;
    --h1-size: 1.1rem;
    --h2-size: 1.15rem;
    --h3-size: 1rem;
    --subtitle-size: 0.95rem;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--light-bg), #e9ecef);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

main {
    flex: 1;
}

.section {
    padding: 40px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #666;
}

/* NOVO CABEÇALHO LIMPO */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #17a2b8 50%, #0d6efd 75%, #667eea 100%);
    background-size: 400% 400%;
    animation: gradientMove 12s ease-in-out infinite;
    color: #fff;
    padding: 30px 0 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

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

.logo i {
    font-size: 2.6rem;
    color: var(--accent-color);
}

.logo span {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.coming-soon-badge {
    background: linear-gradient(45deg, var(--accent-color), #ff6b35);
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.4);
}

/* Título */
.hero-content h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Descrição */
.hero-content p {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 0 35px 0;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Estatísticas Compactas */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Floating particles background */
/* PSEUDO-ELEMENTO REMOVIDO */

/* PSEUDO-ELEMENTO REMOVIDO */

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}
@keyframes gradientMove {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}

/* CSS DO HERO-CONTENT REMOVIDO */

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

/* CSS DAS ESTATÍSTICAS REMOVIDO */

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}


/* Cabeçalhos harmonizados */
/* CSS DO H1 REMOVIDO */

h2, .section-title {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: var(--h2-size);
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
    letter-spacing: -0.2px;
    line-height: 1.15;
}

h3, .differential-item h3, .step-card h3, .form-container h3 {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: var(--h3-size);
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.18;
}

.subtitle {
    max-width: 700px;
    margin: 0 auto 40px;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: var(--subtitle-size);
    color: #666;
    font-weight: 400;
    letter-spacing: 0.1px;
    line-height: 1.5;
}

/* CSS DO HERO-SECTION P REMOVIDO */

/* CSS DO LOGO REMOVIDO */

/* CSS DO LOGO I E SPAN REMOVIDO */

/* CSS DO BADGE REMOVIDO */

.btn-cta {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-color), #ff6b35);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

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

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

.btn-cta:hover {
    background: linear-gradient(45deg, #ff6b35, var(--accent-color));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(255, 140, 0, 0.6), 0 0 0 10px rgba(255, 140, 0, 0.1); }
    100% { box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4); }
}

/* Diferenciais Section (Combinado) */
.differentials-section {
    background-color: #fff;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
/* Botão fora do cabeçalho */
.cta-out {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    margin-bottom: 0;
    margin-top: -18px;
    position: relative;
    z-index: 2;
}

.differential-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.differential-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.differential-item:hover::before {
    transform: scaleX(1);
}

.differential-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
    z-index: 10;
}

.differential-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0;
    display: block;
    position: relative;
    transition: all 0.4s ease;
}

.differential-item:hover i {
    transform: scale(1.05);
    color: var(--accent-color);
}
.differential-item i::after {
    content: '';
    display: block;
    margin: 10px auto 0 auto;
    width: 36px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    position: relative;
    top: 0;
}

.differential-item i::after {
    content: '';
    display: block;
    margin: 8px auto 0 auto;
    width: 32px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.differential-item h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.differential-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Como Vai Funcionar Section */
.how-it-works {
    background-color: var(--light-bg);
    padding: 60px 20px;
}

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

.step-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(23, 162, 184, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.step-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
}

.step-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.step-card ul {
    list-style: none;
    padding: 0;
}

.step-card li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.step-card li i {
    font-size: 1rem;
    margin-right: 10px;
    color: var(--accent-color);
}

/* Investors Section */
.investors-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #17a2b8 50%, #0d6efd 75%, #667eea 100%);
    background-size: 400% 400%;
    animation: gradientMove 15s ease-in-out infinite;
    color: #fff;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 50px 40px;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
}

.investors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.investors-section .section-title {
    color: #fff;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.investors-section .section-title::after {
    background-color: var(--accent-color);
    height: 4px;
    width: 100px;
}

.investors-section p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
    line-height: 1.6;
    opacity: 0.95;
}

.contact-investor {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-investor p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.btn-email {
    display: inline-block;
    color: #fff;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-email:hover {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Forms Section */
.forms-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.forms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(23, 162, 184, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.05) 0%, transparent 50%);
}

.forms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: formSlideIn 0.8s ease-out forwards;
}

.form-container:nth-child(1) {
    animation-delay: 0.2s;
}

.form-container:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes formSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.form-container:hover::before {
    transform: scaleX(1);
}

.form-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-container h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 1px;
}

.form-container h3 i {
    margin-right: 8px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.form-group label i {
    margin-right: 6px;
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.btn-submit i {
    margin-right: 8px;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 18px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(23, 162, 184, 0.15);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.form-group input:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(255, 140, 0, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.form-group input:focus + label {
    color: var(--accent-color);
}

.form-group input::placeholder {
    color: #aaa;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-group input:focus::placeholder {
    color: #ccc;
    transform: translateY(-2px);
}

.form-group input:valid {
    border-color: rgba(23, 162, 184, 0.3);
}

.form-group input:valid:focus {
    border-color: var(--primary-color);
}

.btn-submit {
    display: block;
    width: 100%;
    padding: 16px 25px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6b35 50%, var(--accent-color) 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 
        0 6px 20px rgba(255, 140, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

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

.btn-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff6b35 0%, var(--accent-color) 50%, #ff6b35 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(255, 140, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-submit:active:not(:disabled) {
    transform: translateY(0) scale(0.98);
    box-shadow: 
        0 4px 15px rgba(255, 140, 0, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-submit:disabled {
    background: linear-gradient(135deg, #ccc, #999);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    animation: none;
}

/* Seção de Serviços */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(23, 162, 184, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.05) 0%, transparent 50%);
}

.services-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.services-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.08);
}

.services-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.services-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    display: block;
    animation: float 3s ease-in-out infinite;
}

.icon-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(45deg, var(--accent-color), #ff6b35);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.4);
    animation: pulse 2s infinite;
}

.services-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1), rgba(13, 110, 253, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(23, 162, 184, 0.2);
    transition: all 0.3s ease;
    min-width: 80px;
}

.highlight-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.2);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.highlight-item span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-preview h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.services-preview p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-services {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d6efd 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 
        0 6px 20px rgba(23, 162, 184, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-services:hover {
    background: linear-gradient(135deg, #0d6efd 0%, var(--primary-color) 50%, #0d6efd 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(23, 162, 184, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-services i {
    margin-right: 8px;
    font-size: 1rem;
}

/* Modal de Serviços */
.services-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.services-modal.active {
    opacity: 1;
    visibility: visible;
}

.services-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    width: 1200px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.services-modal.active .services-modal-content {
    transform: scale(1);
}

.services-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, var(--primary-color), #0d6efd);
    color: white;
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 1;
}

.services-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), #0d6efd);
    opacity: 0.95;
    z-index: -1;
    border-radius: 20px 20px 0 0;
}

.services-modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.services-modal-header h2 i {
    margin-right: 10px;
    color: var(--accent-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 2px 4px rgba(255, 140, 0, 0.5));
}

.close-services-modal {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.close-services-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Campo de Busca */
.services-search-container {
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9), rgba(233, 236, 239, 0.8));
    border-bottom: 2px solid #f0f0f0;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto 15px;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
    z-index: 2;
}

.search-box input {
    width: 100%;
    padding: 18px 60px 18px 55px;
    border: 3px solid rgba(23, 162, 184, 0.2);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-box input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 
        0 0 0 4px rgba(255, 140, 0, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.search-box input::placeholder {
    color: #999;
    font-weight: 500;
}

.clear-search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 140, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.clear-search-btn:hover {
    background: rgba(255, 140, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.search-results-info {
    text-align: center;
}

.search-results-info span {
    background: linear-gradient(135deg, var(--primary-color), #0d6efd);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.services-categories {
    padding: 30px;
}

.service-category {
    margin-bottom: 40px;
}

.service-category h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-category h3 i {
    color: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.service-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid rgba(23, 162, 184, 0.1);
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(23, 162, 184, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 249, 250, 0.9));
}

.service-item.emergency {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border-color: rgba(255, 193, 7, 0.3);
    color: #e65100;
    font-weight: 700;
}

.service-item.emergency:hover {
    border-color: #ff9800;
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
}

.missing-service-form {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9), rgba(233, 236, 239, 0.8));
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    border: 2px solid rgba(23, 162, 184, 0.1);
}

.missing-service-form h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.missing-service-form h3 i {
    color: var(--accent-color);
}

.missing-service-form p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

.missing-service-form .form-group {
    margin-bottom: 20px;
}

.missing-service-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.missing-service-form input,
.missing-service-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(23, 162, 184, 0.15);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.missing-service-form input:focus,
.missing-service-form textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

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

/* Footer */
.footer {
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}


/* CSS DO CABEÇALHO REMOVIDO - SERÁ REFEITO */

/* Responsividade Mobile First */
@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0 30px 0;
        min-height: 50vh;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .logo-container {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .logo i {
        font-size: 2.34rem;
    }
    
    .logo span {
        font-size: 1.8rem;
    }
    
    .coming-soon-badge {
        padding: 3px 6px;
        font-size: 0.35rem;
    }
    
    .hero-content h1 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .stats-container {
        gap: 25px;
        margin-top: 25px;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .section {
        padding: 30px 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 25px;
    }
    
    .differential-item {
        padding: 25px 20px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .btn-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .btn-submit {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 12px;
        margin-top: 0;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .stat-item {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-number {
        font-size: 1.3rem;
        text-align: center !important;
        width: 100%;
    }
    
    .stat-label {
        font-size: 0.6rem;
        text-align: center !important;
        width: 100%;
    }
    
    .coming-soon-badge {
        font-size: 0.5rem;
        padding: 2px 6px;
    }
    
    .logo {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
}

/* Responsividade para Modal de Serviços */
@media (max-width: 768px) {
    .services-modal-content {
        max-width: 95vw;
        max-height: 95vh;
        width: 100%;
        margin: 10px;
    }
    
    .services-search-container {
        padding: 20px 15px;
    }
    
    .search-box input {
        padding: 15px 50px 15px 45px;
        font-size: 1rem;
    }
    
    .search-box i {
        left: 15px;
        font-size: 1rem;
    }
    
    .clear-search-btn {
        right: 12px;
        width: 30px;
        height: 30px;
    }
    
    .search-results-info span {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .services-modal-header {
        padding: 20px;
    }
    
    .services-modal-header h2 {
        font-size: 1.4rem;
    }
    
    .services-categories {
        padding: 20px;
    }
    
    .service-category h3 {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .service-item {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .missing-service-form {
        padding: 20px;
    }
    
    .services-card {
        padding: 30px 20px;
    }
    
    .services-preview h3 {
        font-size: 1.3rem;
    }
    
    .services-preview p {
        font-size: 1rem;
    }
    
    .btn-services {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .services-highlights {
        gap: 15px;
        margin: 20px 0;
    }
    
    .highlight-item {
        padding: 12px 15px;
        min-width: 70px;
    }
    
    .highlight-item i {
        font-size: 1.2rem;
    }
    
    .highlight-item span {
        font-size: 0.8rem;
    }
    
    .services-icon i {
        font-size: 3rem;
    }
    
    .icon-badge {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 15px 0 25px 0;
        min-height: 45vh;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .logo i {
        font-size: 1.95rem;
    }
    
    .logo span {
        font-size: 1.5rem;
    }
    
    .coming-soon-badge {
        padding: 2.5px 5px;
        font-size: 0.325rem;
    }
    
    .hero-content h1 {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .stats-container {
        gap: 20px;
        margin-top: 20px;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .differential-item i {
        font-size: 2.5rem;
    }
    
    .step-card i {
        font-size: 2rem;
    }
    
    .form-group input {
        padding: 12px 15px;
    }
    
    .investors-section {
        padding: 30px 20px;
        margin: 30px auto;
    }
    
    .investors-section p {
        font-size: 1.1rem;
    }
    
    .btn-email {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Responsividade para desktop */
@media (min-width: 768px) {
    .forms-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .differentials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .form-container {
        padding: 40px 35px;
    }
    
    .form-container h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 1200px) {
    /* CSS MOBILE DO HERO-SECTION REMOVIDO */
    
    .section {
        padding: 50px 20px;
    }
    
    .differentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #17a2b8 50%, #0d6efd 75%, #667eea 100%);
    background-size: 400% 400%;
    animation: gradientMove 8s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 2.2rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.loading-logo i {
    font-size: 2.8rem;
    color: var(--accent-color);
    animation: handshake 1.5s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 140, 0, 0.3));
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top: 3px solid var(--accent-color);
    border-right: 3px solid rgba(255, 140, 0, 0.7);
    border-radius: 50%;
    animation: spin 1.2s linear infinite;
    margin: 0 auto 25px;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.loading-content p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes handshake {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    20% { 
        transform: translateY(-3px) rotate(-1deg); 
    }
    40% { 
        transform: translateY(-6px) rotate(0deg); 
    }
    60% { 
        transform: translateY(-3px) rotate(1deg); 
    }
    80% { 
        transform: translateY(-1px) rotate(0deg); 
    }
}

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

@keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}