/* PALETA DE CORES (NOVA) */
:root {
    --kyros-navy: #0A192F;
    --kyros-electric-blue: #00A6FB;
    --kyros-white: #FFFFFF;
    --kyros-off-white: #F0F2F5;
    --kyros-text: #CDD6F7;
    --kyros-cta: #00A6FB; /* Usando o azul para os CTAs */
    --kyros-gold: #BFA181;
}

/* BASE E TIPOGRAFIA */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    color: var(--kyros-text);
    background-color: var(--kyros-navy);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Satoshi', sans-serif;
    font-weight: 900; /* Títulos com mais peso */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

section {
    padding: 100px 20px;
}

.section-text {
    max-width: 700px;
    margin: 0 auto 40px;
}

/* ANIMAÇÕES DE SCROLL */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

.fade-in-up, .fade-in-left, .fade-in-right {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left { animation-name: fadeInLeft; }
.fade-in-right { animation-name: fadeInRight; }

/* HEADER */
.header {
    background: linear-gradient(135deg, var(--kyros-navy) 0%, #0D1A2F 50%, var(--kyros-navy) 100%);
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(0, 166, 251, 0.1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 166, 251, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-and-slogan {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo-text {
    font-family: 'Satoshi', sans-serif;
    font-size: 2.5em;
    color: var(--kyros-white);
    font-weight: 900;
    line-height: 1;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(0, 166, 251, 0.3);
}

.logo-accent {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kyros-electric-blue) 0%, #00B8FF 50%, var(--kyros-electric-blue) 100%);
    border-radius: 2px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.8; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.05); }
}

.slogan-text {
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    color: var(--kyros-text);
    opacity: 0.9;
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* SEÇÃO HERO */
.hero-section {
    background: linear-gradient(135deg, var(--kyros-navy) 0%, #0D1A2F 25%, #0F1B3A 50%, #1A2B4A 75%, #0D1A2F 100%);
    color: var(--kyros-white);
    padding: 150px 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 166, 251, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(191, 161, 129, 0.05) 0%, transparent 60%),
                radial-gradient(ellipse at 50% 50%, rgba(0, 166, 251, 0.03) 0%, transparent 80%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.1) 0%, rgba(0, 166, 251, 0.05) 100%);
    border: 1px solid rgba(0, 166, 251, 0.3);
    color: var(--kyros-electric-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-section h1 {
    font-size: 4.8em;
    font-weight: 900;
    color: var(--kyros-white);
    margin-bottom: 25px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.highlight-text {
    background: linear-gradient(135deg, var(--kyros-electric-blue) 0%, #00B8FF 50%, var(--kyros-electric-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kyros-electric-blue) 0%, #00B8FF 50%, var(--kyros-electric-blue) 100%);
    border-radius: 2px;
    opacity: 0.8;
}

.hero-section .hero-subtitle {
    font-size: 1.9em;
    font-weight: 400;
    color: var(--kyros-text);
    max-width: 850px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-family: 'Satoshi', sans-serif;
    font-size: 2.5em;
    font-weight: 900;
    color: var(--kyros-electric-blue);
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(0, 166, 251, 0.3);
}

.stat-label {
    font-size: 0.9em;
    color: var(--kyros-text);
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 166, 251, 0.3) 50%, transparent 100%);
}

/* SEÇÃO O PROBLEMA (fundo claro para contraste) */
.problem-section {
    background: linear-gradient(135deg, var(--kyros-off-white) 0%, #F8FAFC 25%, #F5F7FA 50%, #F0F2F5 75%, #F8FAFC 100%);
    color: var(--kyros-navy);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(0, 166, 251, 0.02) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 80%, rgba(191, 161, 129, 0.015) 0%, transparent 70%);
    pointer-events: none;
}

.problem-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.problem-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.1) 0%, rgba(0, 166, 251, 0.05) 100%);
    border: 1px solid rgba(0, 166, 251, 0.2);
    color: var(--kyros-electric-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.problem-section h2 {
    font-size: 3.2em;
    font-weight: 900;
    color: var(--kyros-navy);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.problem-section p, .problem-section li {
    color: var(--kyros-navy);
    opacity: 0.9;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.problem-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 166, 251, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kyros-electric-blue) 0%, #00B8FF 50%, var(--kyros-electric-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 166, 251, 0.15);
    border-color: rgba(0, 166, 251, 0.2);
}

.card-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.problem-card:hover .card-icon {
    transform: scale(1.1);
    filter: grayscale(0);
}

.problem-card h3 {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--kyros-navy);
    margin-bottom: 15px;
}

.problem-card p {
    color: var(--kyros-navy);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95em;
}

.columns-container {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 60px;
    text-align: left;
}

.column {
    flex-basis: 50%;
    min-width: 300px;
}

.visual-placeholder {
    width: 100%;
    height: 350px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.column h3 {
    font-size: 2em;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--kyros-navy);
}

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

.column li {
    margin-bottom: 15px;
}

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

.centered-content h3 {
    font-size: 2em;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--kyros-navy);
}

.centered-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.centered-content li {
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    border-left: 4px solid var(--kyros-electric-blue);
}

/* SEÇÃO O MANIFESTO CENTAURO */
.centaur-manifesto-section {
    background: linear-gradient(45deg, var(--kyros-navy) 0%, #0D1A2F 20%, #0F1B3A 40%, #1A2B4A 60%, #0F1B3A 80%, #0F1B3A 100%);
    color: var(--kyros-text);
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

.trust-engineering-content {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-engineering-content h2 {
    font-size: 3em;
    font-weight: 900;
    color: var(--kyros-white);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.centaur-manifesto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 166, 251, 0.04) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 30%, rgba(191, 161, 129, 0.02) 0%, transparent 70%),
                radial-gradient(ellipse at 50% 80%, rgba(0, 166, 251, 0.02) 0%, transparent 80%);
    pointer-events: none;
}

.manifesto-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.manifesto-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.1) 0%, rgba(0, 166, 251, 0.05) 100%);
    border: 1px solid rgba(0, 166, 251, 0.3);
    color: var(--kyros-electric-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.centaur-manifesto-section h2 {
    color: var(--kyros-white);
    font-size: 3.2em;
    font-weight: 900;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.manifesto-content {
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.origin-story {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 166, 251, 0.05) 50%, rgba(255, 255, 255, 0.03) 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 166, 251, 0.2);
    margin-bottom: 30px;
    position: relative;
    backdrop-filter: blur(10px);
}

.origin-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kyros-electric-blue) 0%, #00B8FF 50%, var(--kyros-electric-blue) 100%);
    border-radius: 16px 16px 0 0;
}

.story-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.manifesto-statement-card {
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.1) 0%, rgba(0, 166, 251, 0.05) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 166, 251, 0.3);
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.statement-icon {
    font-size: 2em;
    margin-bottom: 15px;
    display: block;
}

.manifesto-statement {
    font-style: italic;
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    color: var(--kyros-white);
    font-weight: 500;
    line-height: 1.5;
}

.centaur-formula {
    margin-bottom: 50px;
}

.centaur-formula h3 {
    color: var(--kyros-electric-blue);
    font-size: 1.5em;
    font-weight: 900;
}

.formula-element {
    font-size: 1.2em;
    color: var(--kyros-white);
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
}

.formula-icon {
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    margin: 0 5px;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(175deg);
    transition: all 0.3s ease;
}

.formula-icon:hover {
    transform: scale(1.1);
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(175deg) drop-shadow(0 0 10px rgba(0, 166, 251, 0.5));
}

.pillars-section {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.pillars-header {
    text-align: center;
    margin-bottom: 50px;
}

.pillars-section h3 {
    color: var(--kyros-white);
    font-size: 2.2em;
    font-weight: 900;
    margin-bottom: 15px;
}

.pillars-subtitle {
    color: var(--kyros-text);
    font-size: 1.1em;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

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

.pillars-grid::after {
    content: '';
    grid-column: 1 / -1;
    height: 0;
}

.pillar-card:nth-child(4) {
    grid-column: 2;
    justify-self: center;
    max-width: 400px;
}

.pillar-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 166, 251, 0.05) 50%, rgba(255, 255, 255, 0.03) 100%);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid rgba(0, 166, 251, 0.2);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kyros-electric-blue) 0%, #00B8FF 50%, var(--kyros-electric-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 166, 251, 0.15);
    border-color: rgba(0, 166, 251, 0.4);
}

.pillar-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: block;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
    filter: grayscale(0);
}

.pillar-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.8em;
    font-weight: 700;
    color: var(--kyros-electric-blue);
    opacity: 0.6;
    font-family: 'Satoshi', sans-serif;
}

.pillar-card h4 {
    color: var(--kyros-electric-blue);
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: 700;
    line-height: 1.3;
}

.closing-statement {
    font-size: 1.2em;
    max-width: 800px;
    margin: 40px auto 0;
    color: var(--kyros-text);
}

/* SEÇÃO O PROMPTFÓLIO (A SOLUÇÃO) */
.solution-section {
    background: linear-gradient(135deg, var(--kyros-off-white) 0%, #F8FAFC 25%, #F5F7FA 50%, #F0F2F5 75%, #F8FAFC 100%);
    color: var(--kyros-navy);
    margin-top: -50px;
    padding-top: 150px;
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(0, 166, 251, 0.02) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 80%, rgba(191, 161, 129, 0.015) 0%, transparent 70%);
    pointer-events: none;
}

.solution-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.solution-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.1) 0%, rgba(0, 166, 251, 0.05) 100%);
    border: 1px solid rgba(0, 166, 251, 0.2);
    color: var(--kyros-electric-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.solution-section h2 {
    font-size: 3.2em;
    font-weight: 900;
    color: var(--kyros-navy);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.solution-section p {
    color: var(--kyros-navy);
    opacity: 0.9;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 166, 251, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kyros-electric-blue) 0%, #00B8FF 50%, var(--kyros-electric-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 166, 251, 0.15);
    border-color: rgba(0, 166, 251, 0.2);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: grayscale(0);
}

.feature-card h3 {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--kyros-navy);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--kyros-navy);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95em;
}

.mockup-placeholder {
    width: 100%;
    height: 500px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin-top: 50px;
}

/* SEÇÃO A ENGENHARIA DA CONFIANÇA */
.trust-engineering-section {
    background: linear-gradient(45deg, #0F1B3A 0%, #1A2B4A 20%, #0D1A2F 40%, #0F1B3A 60%, #1A2B4A 80%, var(--kyros-navy) 100%);
    color: var(--kyros-text);
    position: relative;
    overflow: hidden;
    margin-top: -50px;
    padding-top: 150px;
    padding-bottom: 50px;
}

.trust-engineering-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 166, 251, 0.04) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 30%, rgba(191, 161, 129, 0.02) 0%, transparent 70%),
                radial-gradient(ellipse at 50% 80%, rgba(0, 166, 251, 0.02) 0%, transparent 80%);
    pointer-events: none;
}

.trust-engineering-section h2 {
    font-size: 3em;
    font-weight: 900;
    color: var(--kyros-white);
    position: relative;
    z-index: 1;
}

.trust-engineering-section p {
    color: var(--kyros-text);
    opacity: 0.9;
}

.carousel-wrapper {
    max-width: 900px;
    margin: 40px auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-container {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* SEÇÃO A ENGENHARIA DA CONFIANÇA */
.trust-engineering-section {
    background: linear-gradient(45deg, #0F1B3A 0%, #1A2B4A 20%, #0D1A2F 40%, #0F1B3A 60%, #1A2B4A 80%, var(--kyros-navy) 100%);
    color: var(--kyros-text);
    position: relative;
    overflow: hidden;
    margin-top: -50px;
    padding-top: 150px;
    padding-bottom: 50px;
}

.trust-engineering-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(0, 166, 251, 0.04) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 30%, rgba(191, 161, 129, 0.02) 0%, transparent 70%),
                radial-gradient(ellipse at 50% 80%, rgba(0, 166, 251, 0.02) 0%, transparent 80%);
    pointer-events: none;
}

.trust-engineering-section h2 {
    font-size: 3em;
    font-weight: 900;
    color: var(--kyros-white);
    position: relative;
    z-index: 1;
}

.trust-engineering-section p {
    color: var(--kyros-text);
    opacity: 0.9;
}

.carousel-wrapper {
    max-width: 900px;
    margin: 40px auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-container {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
}

/* Corrija o posicionamento inicial dos slides */
.carousel-slide {
    padding: 40px;
    border-radius: 10px;
    background-color: var(--kyros-white);
    color: var(--kyros-navy);
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%; /* Centraliza o slide horizontalmente */
    transform: translate(-50%, -50%); /* Ajusta para a centralização perfeita */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Garante que o slide ativo esteja totalmente visível e centralizado */
.carousel-slide.active {
    opacity: 1;
    position: relative; /* Volta para o fluxo normal para evitar sobreposição */
    transform: none; /* Remove a transformação absoluta no slide ativo */
    left: auto;
    top: auto;
    display: block;
}

/* Remove as classes de animação de entrada e saída, pois vamos usar o JavaScript para controlar isso */
.carousel-slide.animate-out-left,
.carousel-slide.animate-in-right,
.carousel-slide.animate-out-right,
.carousel-slide.animate-in-left {
    animation: none !important; /* Desabilita as animações para usar uma abordagem mais controlada */
}

/* Novo estilo para esconder os slides não ativos */
.carousel-slide:not(.active) {
    display: none;
}


.slide-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.carousel-slide h3 {
    color: var(--kyros-electric-blue);
    margin-top: 0;
}

.carousel-slide p {
    color: var(--kyros-navy);
    opacity: 0.9;
    margin-bottom: 15px;
}

.carousel-slide .formula {
    font-weight: bold;
    color: var(--kyros-navy);
    font-style: italic;
    font-size: 0.9em;
}

.carousel-slide .revelation {
    font-size: 0.95em;
    font-weight: 600;
}

.carousel-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 166, 251, 0.1) 100%);
    color: var(--kyros-text);
    border: 1px solid rgba(0, 166, 251, 0.2);
    font-size: 2.5em;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--kyros-electric-blue) 0%, #0088CC 100%);
    color: var(--kyros-white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 166, 251, 0.3);
}

.prev-btn { margin-right: 20px; }
.next-btn { margin-left: 20px; }

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.indicator-dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(0, 166, 251, 0.2) 100%);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 166, 251, 0.1);
}

.indicator-dot.active {
    background: linear-gradient(135deg, var(--kyros-electric-blue) 0%, #0088CC 100%);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 166, 251, 0.4);
}

.indicator-dot:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.4) 0%, rgba(0, 136, 204, 0.3) 100%);
}

/* RESPONSIVIDADE DO CARROSSEL */
@media (max-width: 768px) {
    .carousel-wrapper {
        max-width: 100%;
        margin: 20px auto;
        padding: 0 10px;
    }
    
    .carousel-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .carousel {
        height: auto;
        min-height: 400px;
        order: 2;
    }
    
    .carousel-slide {
        padding: 20px;
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        height: auto;
        min-height: 350px;
    }
    
    .carousel-slide.active {
        position: relative;
        transform: none;
        display: block;
    }
    
    .carousel-btn {
        display: none;
    }

    
    .carousel-btn.prev-btn {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .carousel-btn.next-btn {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .slide-icon {
        font-size: 2.5em;
        margin-bottom: 15px;
    }
    
    .carousel-slide h3 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }
    
    .carousel-slide p {
        font-size: 0.9em;
        margin-bottom: 12px;
    }
    
    .carousel-slide .formula {
        font-size: 0.8em;
    }
    
    .carousel-slide .revelation {
        font-size: 0.85em;
    }
}


@media (max-width: 480px) {
    .carousel-wrapper {
        padding: 0 5px;
    }
    
    .carousel-slide {
        padding: 15px;
        min-height: 300px;
    }
    
    .carousel {
        min-height: 320px;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .slide-icon {
        font-size: 2em;
    }
    
    .carousel-slide h3 {
        font-size: 1.3em;
    }
    
    .carousel-slide p {
        font-size: 0.85em;
    }
    
    .carousel-slide .formula {
        font-size: 0.75em;
    }
    
    .carousel-slide .revelation {
        font-size: 0.8em;
    }
}

@keyframes slideOutLeft {
    from { transform: translateY(-50%) translateX(0); opacity: 1; }
    to { transform: translateY(-50%) translateX(-100%); opacity: 0; }
}

@keyframes slideOutRight {
    from { transform: translateY(-50%) translateX(0); opacity: 1; }
    to { transform: translateY(-50%) translateX(100%); opacity: 0; }
}

@keyframes slideInRight {
    from { transform: translateY(-50%) translateX(100%); opacity: 0; }
    to { transform: translateY(-50%) translateX(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateY(-50%) translateX(-100%); opacity: 0; }
    to { transform: translateY(-50%) translateX(0); opacity: 1; }
}

.carousel-slide.animate-out-left { animation: slideOutLeft 0.5s forwards; }
.carousel-slide.animate-in-right { animation: slideInRight 0.5s forwards; }
.carousel-slide.animate-out-right { animation: slideOutRight 0.5s forwards; }
.carousel-slide.animate-in-left { animation: slideInLeft 0.5s forwards; }

.slide-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.carousel-slide h3 {
    color: var(--kyros-electric-blue);
    margin-top: 0;
}

.carousel-slide p {
    color: var(--kyros-navy);
    opacity: 0.9;
    margin-bottom: 15px;
}

.carousel-slide .formula {
    font-weight: bold;
    color: var(--kyros-navy);
    font-style: italic;
    font-size: 0.9em;
}

.carousel-slide .revelation {
    font-size: 0.95em;
    font-weight: 600;
}

.carousel-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(0, 166, 251, 0.1) 100%);
    color: var(--kyros-text);
    border: 1px solid rgba(0, 166, 251, 0.2);
    font-size: 2.5em;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, var(--kyros-electric-blue) 0%, #0088CC 100%);
    color: var(--kyros-white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 166, 251, 0.3);
}

.prev-btn { margin-right: 20px; }
.next-btn { margin-left: 20px; }

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.indicator-dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(0, 166, 251, 0.2) 100%);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 166, 251, 0.1);
}

.indicator-dot.active {
    background: linear-gradient(135deg, var(--kyros-electric-blue) 0%, #0088CC 100%);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 166, 251, 0.4);
}

.indicator-dot:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.4) 0%, rgba(0, 136, 204, 0.3) 100%);
}

/* RESPONSIVIDADE DO CARROSSEL */
@media (max-width: 768px) {
    .carousel-wrapper {
        max-width: 100%;
        margin: 20px auto;
        padding: 0 10px;
    }
    
    .carousel-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .carousel {
        height: auto;
        min-height: 400px;
        order: 2;
    }
    
    .carousel-slide {
        padding: 20px;
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        height: auto;
        min-height: 350px;
    }
    
    .carousel-slide.active {
        position: relative;
        transform: none;
        display: block;
    }
    
    .carousel-btn {
       display: none;
    }
    
    .carousel-btn.prev-btn {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .carousel-btn.next-btn {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .slide-icon {
        font-size: 2.5em;
        margin-bottom: 15px;
    }
    
    .carousel-slide h3 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }
    
    .carousel-slide p {
        font-size: 0.9em;
        margin-bottom: 12px;
    }
    
    .carousel-slide .formula {
        font-size: 0.8em;
    }
    
    .carousel-slide .revelation {
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper {
        padding: 0 5px;
    }
    
    .carousel-slide {
        padding: 15px;
        min-height: 300px;
    }
    
    .carousel {
        min-height: 320px;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .slide-icon {
        font-size: 2em;
    }
    
    .carousel-slide h3 {
        font-size: 1.3em;
    }
    
    .carousel-slide p {
        font-size: 0.85em;
    }
    
    .carousel-slide .formula {
        font-size: 0.75em;
    }
    
    .carousel-slide .revelation {
        font-size: 0.8em;
    }
}

/* RESPONSIVIDADE GERAL */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pillar-card:nth-child(4) {
        grid-column: 1 / -1;
        max-width: 500px;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    section {
        padding: 60px 15px;
    }
    
    .hero-section h1 {
        font-size: 2.8em;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1.4em;
    }
    
    .hero-stats {
        gap: 25px;
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .stat-divider {
        height: 30px;
    }
    
    .hero-badge {
        font-size: 0.8em;
        padding: 6px 16px;
    }
    
    .columns-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .column {
        flex-basis: 100%;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pillar-card:nth-child(4) {
        grid-column: 1 / -1;
        max-width: 500px;
        justify-self: center;
    }
    
    .pillar-card {
        max-width: 100%;
        margin-bottom: 0;
    }
    
    .section-indicator {
        right: 15px;
        gap: 10px;
    }
    
    .section-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.2em;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1.2em;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 25px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 1.8em;
    }
    
    .hero-badge {
        font-size: 0.75em;
        padding: 5px 12px;
    }
    
    .logo-text {
        font-size: 2em;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pillar-card:nth-child(4) {
        grid-column: 1;
        max-width: 100%;
        justify-self: stretch;
    }
    
    .section-text {
        font-size: 0.9em;
    }
    
    .pillar-card {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
        margin: 20px auto;
    }
    
    .btn-submit {
        font-size: 1em;
        padding: 15px;
    }
    
    .formula-icon {
        width: 1.2em;
        height: 1.2em;
        margin: 0 3px;
    }
}

/* SEÇÃO BENEFÍCIOS (fundo claro para contraste) */
.benefits-section {
    background: linear-gradient(135deg, var(--kyros-off-white) 0%, #F8FAFC 25%, #F5F7FA 50%, #F0F2F5 75%, #F8FAFC 100%);
    color: var(--kyros-navy);
    position: relative;
    overflow: hidden;
    margin-top: -50px;
    padding-top: 150px;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(0, 166, 251, 0.02) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 80%, rgba(191, 161, 129, 0.015) 0%, transparent 70%),
                radial-gradient(ellipse at 50% 50%, rgba(0, 166, 251, 0.01) 0%, transparent 90%);
    pointer-events: none;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.benefits-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.1) 0%, rgba(0, 166, 251, 0.05) 100%);
    border: 1px solid rgba(0, 166, 251, 0.2);
    color: var(--kyros-electric-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.benefits-section h2 {
    font-size: 3.2em;
    font-weight: 900;
    color: var(--kyros-navy);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.benefits-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(0, 166, 251, 0.1);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--kyros-electric-blue) 0%, #00B8FF 50%, var(--kyros-electric-blue) 100%);
    border-radius: 20px 20px 0 0;
}

.benefit-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 25px;
}

.benefit-icon {
    font-size: 3em;
    background: linear-gradient(135deg, var(--kyros-electric-blue) 0%, #00B8FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 166, 251, 0.3));
}

.benefit-title h3 {
    text-transform: uppercase;
    color: var(--kyros-navy);
    font-size: 1.2em;
    font-weight: 700;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.benefit-title h4 {
    color: var(--kyros-electric-blue);
    font-size: 1.8em;
    font-weight: 700;
    margin: 0;
}

.benefit-features {
    display: grid;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.03) 0%, rgba(0, 166, 251, 0.01) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 166, 251, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 32px rgba(0, 166, 251, 0.1);
    border-color: rgba(0, 166, 251, 0.2);
}

.feature-icon {
    font-size: 2em;
    flex-shrink: 0;
    margin-top: 5px;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    filter: grayscale(0);
}

.feature-content h5 {
    color: var(--kyros-navy);
    font-size: 1.2em;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.feature-content p {
    color: var(--kyros-navy);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

/* SEÇÃO PROVA SOCIAL (fundo escuro) */
.social-proof-section {
    background: linear-gradient(135deg, var(--kyros-navy) 0%, #0D1A2F 25%, #0F1B3A 50%, #1A2B4A 75%, #0D1A2F 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.social-proof-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 166, 251, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(191, 161, 129, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.social-proof-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.1) 0%, rgba(0, 166, 251, 0.05) 100%);
    border: 1px solid rgba(0, 166, 251, 0.3);
    color: var(--kyros-electric-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.social-proof-section h2 {
    color: var(--kyros-white);
    font-size: 3.2em;
    font-weight: 900;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.social-proof-section p {
    color: var(--kyros-text);
    opacity: 0.9;
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 166, 251, 0.05) 50%, rgba(255, 255, 255, 0.03) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 166, 251, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kyros-electric-blue) 0%, #00B8FF 50%, var(--kyros-electric-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 166, 251, 0.15);
    border-color: rgba(0, 166, 251, 0.4);
}

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

.quote-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    display: block;
    color: var(--kyros-electric-blue);
    opacity: 0.8;
}

.testimonial-card p {
    color: var(--kyros-text);
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(0, 166, 251, 0.2);
    padding-top: 20px;
}

.author-info h4 {
    color: var(--kyros-white);
    font-size: 1.1em;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.author-info span {
    color: var(--kyros-electric-blue);
    font-size: 0.9em;
    opacity: 0.8;
}

/* SEÇÃO FORMULÁRIO DE CONTATO (fundo escuro) */
.form-section {
    background: linear-gradient(135deg, var(--kyros-navy) 0%, #0D1A2F 25%, #0F1B3A 50%, #1A2B4A 75%, #0D1A2F 100%);
    color: var(--kyros-text);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 166, 251, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(191, 161, 129, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.form-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.form-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.1) 0%, rgba(0, 166, 251, 0.05) 100%);
    border: 1px solid rgba(0, 166, 251, 0.3);
    color: var(--kyros-electric-blue);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.form-section h2 {
    color: var(--kyros-white);
    font-size: 3.2em;
    font-weight: 900;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 166, 251, 0.05) 50%, rgba(255, 255, 255, 0.03) 100%);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(0, 166, 251, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--kyros-electric-blue) 0%, #00B8FF 50%, var(--kyros-electric-blue) 100%);
    border-radius: 20px 20px 0 0;
}

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

.form-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
    background: linear-gradient(135deg, var(--kyros-electric-blue) 0%, #00B8FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(0, 166, 251, 0.3));
}

.form-title {
    color: var(--kyros-white);
    font-size: 2em;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.form-subtitle {
    color: var(--kyros-text);
    font-size: 1.1em;
    opacity: 0.8;
    margin: 0;
}

.form-fields {
    margin-bottom: 40px;
}

.input-group {
    margin-bottom: 30px;
}

.input-label {
    display: block;
    color: var(--kyros-white);
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 20px;
    font-size: 1.2em;
    color: var(--kyros-electric-blue);
    z-index: 2;
    pointer-events: none;
}

input[type="text"], input[type="email"], input[type="url"] {
    width: 100%;
    padding: 20px 20px 20px 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 166, 251, 0.05) 100%);
    border: 2px solid rgba(0, 166, 251, 0.2);
    border-radius: 12px;
    color: var(--kyros-white);
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
}

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus {
    outline: none;
    border-color: var(--kyros-electric-blue);
    box-shadow: 0 0 20px rgba(0, 166, 251, 0.2);
    transform: translateY(-2px);
}

input::placeholder {
    color: var(--kyros-text);
    opacity: 0.6;
}

.btn-submit {
    background: linear-gradient(135deg, var(--kyros-electric-blue) 0%, #0088CC 50%, #006699 100%);
    color: var(--kyros-white);
    font-weight: bold;
    font-size: 1.2em;
    padding: 20px 40px;
    width: 100%;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 166, 251, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.btn-submit::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-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 166, 251, 0.4);
    background: linear-gradient(135deg, #00B8FF 0%, #0099DD 50%, #0077BB 100%);
}

.btn-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(5px);
}

/* Loading simples no botão */
.loading-text {
    display: none;
    color: #fff;
    font-weight: 600;
}

.btn-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

/* BOTÃO HERO */
.btn-primary {
    background: linear-gradient(135deg, var(--kyros-electric-blue) 0%, #0088CC 50%, #006699 100%);
    color: var(--kyros-white);
    font-weight: 700;
    font-size: 1.1em;
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 166, 251, 0.4);
    background: linear-gradient(135deg, #00B8FF 0%, #0099DD 50%, #0077BB 100%);
    text-decoration: none;
    color: var(--kyros-white);
}

.btn-hero {
    font-size: 1.2em;
    padding: 20px 40px;
    margin: 30px 0;
    box-shadow: 0 8px 32px rgba(0, 166, 251, 0.3);
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 166, 251, 0.5);
}

.hero-cta {
    margin: 40px 0;
}

/* MODAL DE SUCESSO */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--kyros-navy);
    color: var(--kyros-text);
    padding: 30px;
    border: 1px solid var(--kyros-electric-blue);
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease-out;
}

.close-button {
    color: var(--kyros-text);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close-button:hover,
.close-button:focus {
    color: var(--kyros-electric-blue);
}

.modal-body h3 {
    color: var(--kyros-electric-blue);
    font-size: 2em;
    margin-top: 0;
}

/* Animação para o modal */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* RODAPÉ */
.footer {
    background-color: var(--kyros-navy);
    padding: 20px;
    color: var(--kyros-text);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    font-size: 0.9em;
    opacity: 0.7;
}

.footer a {
    color: var(--kyros-text);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer a:hover {
    opacity: 1;
}

/* NAVEGAÇÃO FLUIDA */
html {
    scroll-behavior: smooth;
}

/* ESTILIZAÇÃO DA SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--kyros-navy);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--kyros-electric-blue) 0%, #0088CC 100%);
    border-radius: 4px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00B8FF 0%, #0099DD 100%);
    box-shadow: 0 0 10px rgba(0, 166, 251, 0.3);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #006699 0%, #004466 100%);
}

/* Para Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--kyros-electric-blue) var(--kyros-navy);
}

/* Scrollbar personalizada para elementos específicos */
.carousel::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.6) 0%, rgba(0, 136, 204, 0.6) 100%);
    border-radius: 3px;
}

.carousel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.8) 0%, rgba(0, 136, 204, 0.8) 100%);
}

/* Scrollbar para modais */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--kyros-electric-blue) 0%, #0088CC 100%);
    border-radius: 3px;
}

/* Efeito de glow na scrollbar principal */
::-webkit-scrollbar-thumb {
    position: relative;
}

::-webkit-scrollbar-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--kyros-electric-blue) 0%, #0088CC 100%);
    border-radius: 4px;
    opacity: 0.8;
    filter: blur(1px);
    z-index: -1;
}

.section-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(0, 166, 251, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.section-dot:hover {
    background: rgba(0, 166, 251, 0.6);
    transform: scale(1.2);
}

.section-dot.active {
    background: var(--kyros-electric-blue);
    border-color: var(--kyros-electric-blue);
    box-shadow: 0 0 15px rgba(0, 166, 251, 0.5);
}

.section-dot::after {
    content: attr(data-section);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.section-dot:hover::after {
    opacity: 1;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--kyros-electric-blue), #0088CC);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Esconde labels para acessibilidade */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* HEADER ACTIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tour-start-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--kyros-cta);
    color: var(--kyros-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.tour-start-btn:hover {
    background: var(--kyros-electric-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 166, 251, 0.3);
}

.tour-start-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive header */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .tour-start-btn {
        font-size: 12px;
        padding: 10px 16px;
        width: 100%;
        justify-content: center;
    }
}