/* Reset e Variáveis */
:root {
    --color-dark-blue: #1C2B36;
    --color-light-blue: #0BA5EC;
    --color-white: #FFFFFF;
    --color-light-gray: #F5F7FA;
    --color-text: #1C2B36;
    --color-text-light: #6B7280;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: default;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Cursor personalizado para elementos interativos */
a, button, .btn, input, textarea {
    cursor: pointer;
}

a:hover, button:hover, .btn:hover {
    cursor: pointer;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-dark-blue);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 1rem 0;
}

.hero-header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 60px;
    padding-bottom: 40px;
    padding-top: 20px;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-img {
    height: 34px;
    width: auto;
    display: block;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
    
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out;
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.tech-network {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Display Desktop Central */
.desktop-display {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: desktopFloat 6s ease-in-out infinite;
}

.desktop-screen {
    width: 200px;
    height: 140px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 8px 8px 0 0;
    border: 3px solid rgba(11, 165, 236, 0.3);
    box-shadow: 0 10px 40px rgba(11, 165, 236, 0.3), 
                0 0 60px rgba(11, 165, 236, 0.2),
                inset 0 0 20px rgba(11, 165, 236, 0.1);
    padding: 12px;
    position: relative;
    overflow: hidden;
}

.desktop-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(11, 165, 236, 0.1), transparent);
    animation: screenShine 3s ease-in-out infinite;
}

@keyframes screenShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.screen-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(11, 165, 236, 0.2);
}

.screen-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.screen-title {
    font-size: 0.7rem;
    color: rgba(11, 165, 236, 0.9);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.screen-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.screen-widget {
    height: 6px;
    background: rgba(11, 165, 236, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.widget-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-light-blue), #0a94d4);
    border-radius: 3px;
    animation: widgetPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(11, 165, 236, 0.5);
}

.screen-chart {
    margin-top: 4px;
    height: 40px;
    background: rgba(11, 165, 236, 0.05);
    border-radius: 4px;
    padding: 4px;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawChart 2s ease-out forwards;
}

.chart-point {
    opacity: 0;
    animation: showPoint 0.3s ease-out forwards;
}

.chart-point:nth-child(2) { animation-delay: 0.2s; }
.chart-point:nth-child(3) { animation-delay: 0.3s; }
.chart-point:nth-child(4) { animation-delay: 0.4s; }
.chart-point:nth-child(5) { animation-delay: 0.5s; }
.chart-point:nth-child(6) { animation-delay: 0.6s; }
.chart-point:nth-child(7) { animation-delay: 0.7s; }
.chart-point:nth-child(8) { animation-delay: 0.8s; }
.chart-point:nth-child(9) { animation-delay: 0.9s; }
.chart-point:nth-child(10) { animation-delay: 1s; }
.chart-point:nth-child(11) { animation-delay: 1.1s; }

.desktop-base {
    width: 240px;
    height: 12px;
    background: linear-gradient(135deg, rgba(11, 165, 236, 0.2), rgba(11, 165, 236, 0.1));
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
    position: relative;
}

.desktop-base::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 4px;
    background: rgba(11, 165, 236, 0.3);
    border-radius: 2px;
}

/* Ícones ao redor */
.network-node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(11, 165, 236, 0.15);
    border: 2px solid var(--color-light-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-light-blue);
    z-index: 2;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.network-node:hover {
    transform: scale(1.1);
    background: rgba(11, 165, 236, 0.25);
    box-shadow: 0 0 30px rgba(11, 165, 236, 0.5);
}

.network-node.floating {
    animation: floatNode 4s ease-in-out infinite;
}

.node-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 2px solid var(--color-light-blue);
    opacity: 0;
    animation: pulseNode 2s ease-out infinite;
}

.network-node svg {
    width: 35px;
    height: 35px;
    position: relative;
    z-index: 1;
}

.node-1 { 
    top: 8%; 
    left: 8%; 
}

.node-1.floating {
    animation: floatNode 4s ease-in-out infinite;
    animation-delay: 0s;
}

.node-2 { 
    top: 8%; 
    right: 8%; 
}

.node-2.floating {
    animation: floatNode 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

.node-3 { 
    bottom: 15%; 
    left: 12%; 
}

.node-3.floating {
    animation: floatNode 4s ease-in-out infinite;
    animation-delay: 1s;
}

.node-4 { 
    bottom: 15%; 
    right: 12%; 
}

.node-4.floating {
    animation: floatNode 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.node-5 { 
    top: 50%; 
    right: 3%; 
}

.node-5.floating {
    animation: floatNodeVertical 4s ease-in-out infinite;
    animation-delay: 2s;
    transform: translateY(-50%);
}

.node-6 { 
    top: 50%; 
    left: 3%; 
}

.node-6.floating {
    animation: floatNodeVertical 4s ease-in-out infinite;
    animation-delay: 2.5s;
    transform: translateY(-50%);
}

/* Linhas de conexão */
.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Animações */
@keyframes desktopFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

@keyframes widgetPulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(11, 165, 236, 0.5);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(11, 165, 236, 0.8);
    }
}

@keyframes drawChart {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes showPoint {
    to {
        opacity: 1;
    }
}

@keyframes floatNode {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-8px) translateX(4px);
    }
    50% {
        transform: translateY(0) translateX(0);
    }
    75% {
        transform: translateY(8px) translateX(-4px);
    }
}

@keyframes floatNodeVertical {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    25% {
        transform: translateY(calc(-50% - 8px)) translateX(4px);
    }
    50% {
        transform: translateY(-50%) translateX(0);
    }
    75% {
        transform: translateY(calc(-50% + 8px)) translateX(-4px);
    }
}

@keyframes pulseNode {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


/* Animações SVG */
.animated-svg .pulse-circle {
    animation: pulse 3s ease-in-out infinite;
}

.animated-svg .rotate-diamond {
    animation: rotate 20s linear infinite;
    transform-origin: center;
}

.animated-svg .pulse-center {
    animation: pulse 2s ease-in-out infinite;
}

.animated-svg .line-top,
.animated-svg .line-bottom,
.animated-svg .line-left,
.animated-svg .line-right {
    animation: drawLine 2s ease-in-out infinite;
}

.animated-svg .line-top {
    animation-delay: 0s;
}

.animated-svg .line-bottom {
    animation-delay: 0.5s;
}

.animated-svg .line-left {
    animation-delay: 1s;
}

.animated-svg .line-right {
    animation-delay: 1.5s;
}

/* Elementos flutuantes */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(11, 165, 236, 0.1), rgba(11, 165, 236, 0.05));
    backdrop-filter: blur(10px);
}

.float-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.float-2 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    right: 20%;
    animation: float 8s ease-in-out infinite reverse;
    animation-delay: 1s;
}

.float-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 5%;
    animation: float 7s ease-in-out infinite;
    animation-delay: 2s;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--color-light-blue);
    color: var(--color-white);
    box-shadow: 0 4px 14px 0 rgba(11, 165, 236, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary .arrow {
    transition: transform 0.3s;
}

.btn-primary:hover .arrow {
    transform: translateX(5px);
}

.btn-primary:hover {
    background: #0a94d4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(11, 165, 236, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Seções Gerais */
section {
    padding: var(--spacing-xl) 0;
}

.section-label {
    display: block;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-light-blue);
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark-blue);
    position: relative;
    display: block;
    width: 100%;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.7;
}

/* Sobre */
.about {
    background-color: var(--color-white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box {
    width: 300px;
    height: 300px;
    background: var(--color-light-gray);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.document-icon {
    width: 180px;
    height: 240px;
    color: var(--color-light-blue);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(11, 165, 236, 0.2));
    animation: iconFloat 4s ease-in-out infinite;
}

.icon-power {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 70px;
    height: 70px;
    background: var(--color-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(11, 165, 236, 0.4);
    z-index: 2;
    animation: powerPulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.icon-power:hover {
    transform: scale(1.1) rotate(90deg);
}

.icon-power svg {
    width: 35px;
    height: 35px;
    color: var(--color-white);
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes powerPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(11, 165, 236, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(11, 165, 236, 0.6);
    }
}

.about-content {
    max-width: 100%;
}

.about-content .section-label {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.about-text strong {
    color: var(--color-dark-blue);
    font-weight: 600;
}

.about-metrics {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-light-blue);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.metric-label {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Abordagem */
.approach {
    background-color: var(--color-light-gray);
}

.approach .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-xl) auto 0;
    position: relative;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
    justify-items: stretch;
}

.approach-steps .step {
    width: 100%;
    max-width: 100%;
}

.step {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    aspect-ratio: 1;
    height: 100%;
    min-height: 320px;
    max-height: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    flex-shrink: 0;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-light-blue);
    line-height: 1;
    position: relative;
    flex-shrink: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--color-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition);
    flex-shrink: 0;
}

.step-icon svg {
    width: 30px;
    height: 30px;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    overflow: visible;
    padding-top: 0.5rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-dark-blue);
    flex-shrink: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.step-description {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    flex: 1;
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

/* Benefícios */
.benefits {
    background-color: var(--color-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.benefit-card {
    background-color: var(--color-light-gray);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-light-blue), #0a94d4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.benefit-card:hover::after {
    transform: scaleX(1);
}

.benefit-card:hover {
    border-color: var(--color-light-blue);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(11, 165, 236, 0.25);
    background: linear-gradient(135deg, var(--color-light-gray), rgba(11, 165, 236, 0.03));
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--color-light-blue);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: var(--spacing-md);
    color: var(--color-light-blue);
    transition: var(--transition);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-dark-blue);
}

.benefit-description {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Banner CTA */
.cta-banner {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-light-blue) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contato */
.contact {
    background-color: var(--color-white);
    color: var(--color-text);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info {
    max-width: 100%;
}

.contact-info .section-label {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.contact-description {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-benefit {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.benefit-icon-small {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--color-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

.benefit-icon-small svg {
    width: 20px;
    height: 20px;
}

.benefit-title-small {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-dark-blue);
    margin-bottom: 0.25rem;
}

.benefit-text-small {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-form {
    background: rgba(245, 247, 250, 0.5);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--color-dark-blue);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: var(--color-white);
    color: var(--color-text);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-light-blue);
    background-color: var(--color-white);
    box-shadow: 0 0 0 3px rgba(11, 165, 236, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

.form-disclaimer {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-align: center;
    margin-top: var(--spacing-md);
}

/* Rodapé */
.footer {
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, #152028 100%);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-light-blue), transparent);
    animation: shimmer 3s linear infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    align-items: center;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: var(--spacing-md);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo {
    height: 34px;
    width: auto;
    display: block;
}

.footer-company {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

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

.footer-email a {
    color: var(--color-light-blue);
    text-decoration: none;
    font-size: 1.125rem;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.footer-email a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-light-blue), #0a94d4);
    transition: width 0.3s;
}

.footer-email a:hover::after {
    width: 100%;
}

.footer-email a:hover {
    color: #0a94d4;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Animações de Scroll */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes drawLine {
    0%, 100% {
        stroke-dasharray: 0, 100;
        opacity: 0.5;
    }
    50% {
        stroke-dasharray: 100, 0;
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Responsividade - Tablet */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-illustration {
        order: -1;
        margin-bottom: var(--spacing-md);
    }

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

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-icon {
        order: -1;
    }

    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .step {
        padding: 1.25rem;
        min-height: 300px;
    }
    
    .step-header {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .step-icon {
        width: 55px;
        height: 55px;
    }
    
    .step-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .step-description {
        font-size: 0.85rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .footer-email {
        text-align: center;
    }
}

/* Responsividade - Mobile */
@media (max-width: 640px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }

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

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

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

    .section-subtitle {
        font-size: 1rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-metrics {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .approach-steps {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .step {
        padding: 1rem;
        min-height: 280px;
        aspect-ratio: 1;
    }
    
    .step-header {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .step-number {
        font-size: 2.25rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .step-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: var(--spacing-md);
    }

    .step,
    .benefit-card {
        padding: var(--spacing-md);
    }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus visible para acessibilidade */
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-light-blue);
    outline-offset: 2px;
}

