/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0e1a;
    overflow-x: hidden;
    cursor: none;
}

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

/* Custom Cursor - Graph Icon */
.cursor {
    width: 24px;
    height: 24px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    background: #f4d03f;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M3 3v18h18v-2H5V3H3zm4 14h2v-6H7v6zm4 0h2V9h-2v8zm4 0h2v-4h-2v4z"/></svg>') no-repeat center;
    mask-size: contain;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: rgba(244, 208, 63, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #f4d03f, #f39c12);
    border-radius: 50%;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .particle {
        width: 3px;
        height: 3px;
    }
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 40%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 40%;
    left: 60%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 90%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo i {
    font-size: 2rem;
    background: radial-gradient(ellipse at center, #ffed4e, #ffd700, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: eyeBlink 3s infinite;
}

.logo span {
    background: radial-gradient(ellipse at center, #ffed4e, #ffd700, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 900;
}

.eye-iris {
    color: #f4d03f;
    font-weight: 900;
    font-size: 0.7em;
    position: relative;
    display: inline-block;
    background: radial-gradient(circle, #2c3e50 20%, #f4d03f 20%, #f4d03f 80%, #d4af37 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 5px rgba(244, 208, 63, 0.6);
}

@keyframes eyeBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #f4d03f;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #f4d03f, #f39c12);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    justify-content: space-between;
    height: 20px;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #f4d03f;
    margin: 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(244, 208, 63, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Interactive Background Canvas */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Animated Background Elements */
.bg-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .bg-element {
        transform: scale(0.7);
        opacity: 0.15;
    }
}

.bg-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #f4d03f, transparent);
    animation: lineMove 8s linear infinite;
}

.bg-circle {
    width: 60px;
    height: 60px;
    border: 2px solid #f4d03f;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.bg-triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #f4d03f;
    animation: rotate 10s linear infinite;
}

.bg-graph {
    width: 80px;
    height: 40px;
    background: linear-gradient(45deg, transparent 30%, #f4d03f 30%, #f4d03f 70%, transparent 70%);
    animation: graphPulse 3s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

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

@keyframes graphPulse {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(45deg, #f4d03f, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.subtitle {
    display: block;
    font-size: 2rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-solution {
    font-size: 1.1rem;
    color: #f4d03f;
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f4d03f, #f39c12);
    color: #0a0e1a;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.4);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.floating-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 400px;
    width: 100%;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 208, 63, 0.3);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    animation: cardFloat 4s ease-in-out infinite, cardGlow 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Responsive adjustments for floating cards */
@media (max-width: 768px) {
    .floating-cards-grid {
        max-width: 100%;
        gap: 1rem;
    }
    
    .floating-card {
        min-height: 100px;
        padding: 1rem 0.8rem;
        animation: cardGlow 3s ease-in-out infinite;
    }
    
    .floating-card i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-mobile-cards {
        display: none;
    }
}

@media (max-width: 480px) {
    .floating-cards-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .floating-card {
        min-height: 80px;
    }
}

.floating-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 208, 63, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s linear infinite;
    opacity: 0;
}

.floating-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(244, 208, 63, 0.8);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(244, 208, 63, 0.3);
}

.floating-card:hover::before {
    opacity: 1;
}

.floating-card:hover i {
    animation: iconBounce 0.6s ease-in-out, iconRotate 2s linear infinite;
    color: #f39c12;
}

.floating-card i {
    font-size: 2rem;
    color: #f4d03f;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

.floating-card span {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.floating-card:hover span {
    color: #f4d03f;
    transform: scale(1.1);
}

/* Animações dos Cards */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-0.5deg);
    }
}

@media (max-width: 768px) {
    @keyframes cardFloat {
        0%, 100% {
            transform: translateY(0px) rotate(0deg);
        }
        50% {
            transform: translateY(-5px) rotate(0deg);
        }
    }
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(244, 208, 63, 0.1);
    }
    50% {
        box-shadow: 0 8px 25px rgba(244, 208, 63, 0.2);
    }
}

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

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

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

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #f4d03f, transparent);
    margin: 0;
    opacity: 0.3;
}

/* Problem & Solution Section */
.problem-solution {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

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

/* Problem & Solution Background Elements */
.problem-solution-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.warning-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.warning-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #e74c3c;
    border-radius: 50%;
    opacity: 0.6;
    animation: warningFloat 8s ease-in-out infinite;
}

.warning-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.warning-particle:nth-child(2) {
    top: 60%;
    left: 85%;
    animation-delay: 2s;
}

.warning-particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.warning-particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

.warning-particle:nth-child(5) {
    top: 50%;
    left: 40%;
    animation-delay: 3s;
}

.solution-glow {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: solutionPulse 6s ease-in-out infinite;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 24px;
    opacity: 0.1;
    animation: iconFloat 10s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 15%;
    left: 15%;
    color: #e74c3c;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 70%;
    left: 80%;
    color: #f39c12;
    animation-delay: 3s;
}

.floating-icon:nth-child(3) {
    top: 40%;
    left: 90%;
    color: #2ecc71;
    animation-delay: 6s;
}

@keyframes warningFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

@keyframes solutionPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(120deg);
    }
    66% {
        transform: translateY(-5px) rotate(240deg);
    }
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.problem, .solution {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 208, 63, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.problem:hover, .solution:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 208, 63, 0.4);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f4d03f, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: #0a0e1a;
}

.problem h3, .solution h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f4d03f;
}

.benefits-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.benefits-list i {
    color: #f4d03f;
    font-size: 1.2rem;
}

.problem-details {
    margin-top: 1.5rem;
}

.problem-details p {
    margin-bottom: 1rem;
    color: #cbd5e1;
    font-weight: 500;
}

.problem-list {
    list-style: none;
    margin-top: 1rem;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.problem-list i {
    color: #e74c3c;
    font-size: 1.2rem;
}

/* Strategy Section */
.strategy {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1e2a3a 50%, #0a0e1a 100%);
    position: relative;
    overflow: hidden;
}

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

/* Strategy Background Elements */
.strategy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.strategy-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.strategy-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.2), transparent);
    animation: strategyLineMove 20s linear infinite;
}

.strategy-line:nth-child(1) {
    top: 15%;
    width: 40%;
    left: 30%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.strategy-line:nth-child(2) {
    top: 85%;
    width: 35%;
    left: 35%;
    animation-delay: 10s;
    transform: rotate(-10deg);
}

.strategy-line:nth-child(3) {
    top: 50%;
    width: 25%;
    left: 75%;
    animation-delay: 15s;
    transform: rotate(45deg);
}

.strategy-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.strategy-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #3498db;
    border-radius: 50%;
    border: 2px solid rgba(52, 152, 219, 0.3);
    animation: strategyNodePulse 4s ease-in-out infinite;
}

.strategy-node:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.strategy-node:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-delay: 1s;
}

.strategy-node:nth-child(3) {
    top: 70%;
    left: 25%;
    animation-delay: 2s;
}

.strategy-node:nth-child(4) {
    top: 60%;
    left: 75%;
    animation-delay: 3s;
}

.strategy-arrows {
    position: absolute;
    width: 100%;
    height: 100%;
}

.strategy-arrow {
    position: absolute;
    font-size: 20px;
    color: #3498db;
    opacity: 0.3;
    animation: arrowMove 8s ease-in-out infinite;
}

.strategy-arrow:nth-child(1) {
    top: 35%;
    left: 40%;
    animation-delay: 0s;
}

.strategy-arrow:nth-child(2) {
    top: 65%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes strategyLineMove {
    0% {
        transform: translateX(-100%) rotate(var(--rotation, 0deg));
        opacity: 0;
    }
    50% {
        opacity: 0.15;
    }
    100% {
        transform: translateX(100%) rotate(var(--rotation, 0deg));
        opacity: 0;
    }
}

@keyframes strategyNodePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
    }
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0px);
        opacity: 0.3;
    }
    50% {
        transform: translateX(20px);
        opacity: 0.7;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #f4d03f, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategy-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 208, 63, 0.2);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    border-color: rgba(244, 208, 63, 0.4);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #f4d03f, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0a0e1a;
    font-size: 1.3rem;
}

.step-icon {
    margin: 2rem 0 1.5rem;
}

.step-icon i {
    font-size: 3rem;
    color: #f4d03f;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f4d03f;
}

.strategy-footer {
    text-align: center;
    font-size: 1.2rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

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

/* Services Background Elements */
.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.digital-grid {
    position: absolute;
    width: 100%;
    height: 100%;
}

.grid-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #9b59b6;
    border-radius: 50%;
    animation: gridPulse 6s ease-in-out infinite;
}

.grid-dot:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.grid-dot:nth-child(2) {
    top: 20%;
    left: 80%;
    animation-delay: 1s;
}

.grid-dot:nth-child(3) {
    top: 50%;
    left: 35%;
    animation-delay: 2s;
}

.grid-dot:nth-child(4) {
    top: 50%;
    left: 65%;
    animation-delay: 3s;
}

.grid-dot:nth-child(5) {
    top: 80%;
    left: 25%;
    animation-delay: 4s;
}

.grid-dot:nth-child(6) {
    top: 80%;
    left: 75%;
    animation-delay: 5s;
}

.service-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(155, 89, 182, 0.3), transparent);
    animation: waveMove 15s linear infinite;
}

.wave:nth-child(1) {
    top: 30%;
    animation-delay: 0s;
}

.wave:nth-child(2) {
    top: 50%;
    animation-delay: 5s;
}

.wave:nth-child(3) {
    top: 70%;
    animation-delay: 10s;
}

.floating-service-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.service-bg-icon {
    position: absolute;
    font-size: 28px;
    opacity: 0.08;
    animation: serviceIconFloat 12s ease-in-out infinite;
}

.service-bg-icon:nth-child(1) {
    top: 25%;
    left: 10%;
    color: #9b59b6;
    animation-delay: 0s;
}

.service-bg-icon:nth-child(2) {
    top: 60%;
    left: 85%;
    color: #8e44ad;
    animation-delay: 4s;
}

.service-bg-icon:nth-child(3) {
    top: 80%;
    left: 50%;
    color: #9b59b6;
    animation-delay: 8s;
}

@keyframes gridPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

@keyframes waveMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes serviceIconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 208, 63, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(244, 208, 63, 0.4);
    box-shadow: 0 20px 40px rgba(244, 208, 63, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #f4d03f, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #0a0e1a;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f4d03f;
}

/* Social Proof Section */
.social-proof {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1e2a3a 50%, #0a0e1a 100%);
    position: relative;
    overflow: hidden;
}

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

/* Social Proof Background Elements */
.social-proof-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.stats-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stat-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #e67e22;
    border-radius: 50%;
    animation: statsFloat 10s ease-in-out infinite;
}

.stat-particle:nth-child(1) {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.stat-particle:nth-child(2) {
    top: 45%;
    left: 85%;
    animation-delay: 2.5s;
}

.stat-particle:nth-child(3) {
    top: 75%;
    left: 25%;
    animation-delay: 5s;
}

.stat-particle:nth-child(4) {
    top: 35%;
    left: 70%;
    animation-delay: 7.5s;
}

.growth-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.growth-line {
    position: absolute;
    width: 3px;
    background: linear-gradient(to top, transparent, #e67e22, transparent);
    animation: growthMove 8s ease-in-out infinite;
}

.growth-line:nth-child(1) {
    top: 20%;
    left: 30%;
    height: 60%;
    animation-delay: 0s;
}

.growth-line:nth-child(2) {
    top: 10%;
    left: 50%;
    height: 80%;
    animation-delay: 2.5s;
}

.growth-line:nth-child(3) {
    top: 30%;
    left: 70%;
    height: 50%;
    animation-delay: 5s;
}

.floating-stats {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stats-icon {
    position: absolute;
    font-size: 32px;
    opacity: 0.1;
    animation: statsIconFloat 14s ease-in-out infinite;
}

.stats-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    color: #e67e22;
    animation-delay: 0s;
}

.stats-icon:nth-child(2) {
    top: 60%;
    left: 80%;
    color: #d35400;
    animation-delay: 4.5s;
}

.stats-icon:nth-child(3) {
    top: 80%;
    left: 40%;
    color: #e67e22;
    animation-delay: 9s;
}

@keyframes statsFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) scale(1.3);
        opacity: 1;
    }
}

@keyframes growthMove {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }
    50% {
        transform: scaleY(1);
        opacity: 0.8;
    }
    100% {
        transform: scaleY(0);
        opacity: 0;
    }
}

@keyframes statsIconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-25px) rotate(90deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
    }
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 208, 63, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 208, 63, 0.4);
}

.result-icon i {
    font-size: 3rem;
    color: #f4d03f;
    margin-bottom: 1rem;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f4d03f;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1.1rem;
    color: #cbd5e1;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

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

/* Benefits Background Elements */
.benefits-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.success-rays {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ray {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to top, transparent, #f4d03f, transparent);
    transform-origin: bottom center;
    animation: rayRotate 20s linear infinite;
}

.ray:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.ray:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-delay: 4s;
}

.ray:nth-child(3) {
    top: 60%;
    left: 15%;
    animation-delay: 8s;
}

.ray:nth-child(4) {
    top: 70%;
    left: 75%;
    animation-delay: 12s;
}

.ray:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 16s;
}

.benefit-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #f39c12;
    border-radius: 50%;
    animation: sparkleShine 5s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 25%;
    left: 30%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 55%;
    left: 70%;
    animation-delay: 1.25s;
}

.sparkle:nth-child(3) {
    top: 75%;
    left: 40%;
    animation-delay: 2.5s;
}

.sparkle:nth-child(4) {
    top: 35%;
    left: 85%;
    animation-delay: 3.75s;
}

.floating-benefits {
    position: absolute;
    width: 100%;
    height: 100%;
}

.benefit-icon {
    position: absolute;
    font-size: 30px;
    opacity: 0.08;
    animation: benefitIconFloat 16s ease-in-out infinite;
}

.benefit-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    color: #f4d03f;
    animation-delay: 0s;
}

.benefit-icon:nth-child(2) {
    top: 65%;
    left: 90%;
    color: #f39c12;
    animation-delay: 5.5s;
}

.benefit-icon:nth-child(3) {
    top: 85%;
    left: 60%;
    color: #f4d03f;
    animation-delay: 11s;
}

@keyframes rayRotate {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0;
    }
}

@keyframes sparkleShine {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(2);
        opacity: 1;
    }
}

@keyframes benefitIconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(1);
    }
    75% {
        transform: translateY(-25px) rotate(270deg) scale(1.1);
    }
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 208, 63, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    border-color: rgba(244, 208, 63, 0.4);
}

.benefit-item i {
    font-size: 2rem;
    color: #f4d03f;
    min-width: 40px;
}

.benefit-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon i {
    font-size: 4rem;
    color: #f4d03f;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #f4d03f, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: #f4d03f;
    font-weight: 600;
    margin-bottom: 2rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

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

/* Testimonials Grid */
.testimonials-slider {
    margin-top: 60px;
    padding: 0 20px;
}

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

.slider-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

@media (max-width: 992px) {
    .slider-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .slider-wrapper {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 10px 0;
        /* Hide scrollbar but keep functionality */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .slider-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
}

@media (max-width: 768px) {
    .testimonials-slider {
        margin-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .slider-container {
        padding: 1.5rem 0;
    }
    
    .slider-wrapper {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-slider {
        margin-top: 1.5rem;
        padding-bottom: 2rem;
    }
    
    .slider-container {
        padding: 1rem 0;
    }
    
    .slider-wrapper {
        gap: 1rem;
    }
}

.slide {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
}

.slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .slide {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 250px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px;
    }
    
    .slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
        margin-bottom: 15px;
        max-height: none;
    }
}

@media (max-width: 480px) {
    .slide {
        flex: 0 0 90%;
        min-width: 220px;
        padding: 12px;
    }
}

/* Navigation elements for testimonials */
.slider-nav,
.slider-dots {
    display: none;
}

@media (max-width: 768px) {
    .slider-nav {
        display: flex;
        justify-content: space-between;
        margin-top: 1.5rem;
        padding: 0 10px;
        position: relative;
        z-index: 5;
    }
    
    .slider-nav button {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(244, 208, 63, 0.3);
        color: #f4d03f;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .slider-nav button:hover {
        background: rgba(244, 208, 63, 0.2);
    }
    
    .slider-nav button:active {
        transform: scale(0.95);
    }
    
    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-dots .dot.active {
        background: #f4d03f;
        transform: scale(1.2);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-slider {
        margin-top: 40px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .testimonials-slider {
        margin-top: 30px;
    }
}

/* Contact Info Box */
.contact-info-box {
    background-color: #0a0e1a;
    border: 1px solid rgba(244, 208, 63, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default, will be shown only on mobile */
}

.contact-info-box h3 {
    color: #f4d03f;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-info-box p {
    color: #cbd5e1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info-box i {
    color: #f4d03f;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: #0a0e1a;
    border-top: 1px solid rgba(244, 208, 63, 0.2);
    padding: 3rem 0 1rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-info {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    background: radial-gradient(ellipse at center, #ffed4e, #ffd700, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: eyeBlink 3s infinite;
    margin-right: 5px;
}

.footer-logo span {
    background: radial-gradient(ellipse at center, #ffed4e, #ffd700, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 900;
}

.footer-logo p {
    color: #cbd5e1;
    margin-top: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
    color: #f4d03f;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .footer-contact p {
        justify-content: center;
    }
    
    .contact-info-box {
        display: block;
        position: static;
        margin: 20px auto;
        width: 90%;
        max-width: 320px;
        padding: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    
    .contact-info-box h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .contact-info-box p {
        margin-bottom: 8px;
        font-size: 0.9rem;
    }
}

.footer-contact i {
    color: #f4d03f;
}

/* Footer Animation */
.footer-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.growth-animation {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 208, 63, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.growth-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(244, 208, 63, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s linear infinite;
}

.growth-chart {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 8px;
    height: 100px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(to top, #f39c12, #f4d03f);
    border-radius: 4px 4px 0 0;
    animation: growBar 3s ease-out infinite;
    animation-delay: var(--delay);
    height: var(--height);
    box-shadow: 0 0 10px rgba(244, 208, 63, 0.3);
}

.growth-arrow {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.growth-arrow i {
    font-size: 2rem;
    color: #f4d03f;
    animation: arrowBounce 2s ease-in-out infinite;
}

.growth-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f4d03f;
    position: relative;
    z-index: 1;
}

@keyframes growBar {
    0% {
        height: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        height: var(--height);
        opacity: 1;
    }
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(244, 208, 63, 0.1);
    color: #94a3b8;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(10, 14, 26, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease;
        z-index: 999;
        display: flex;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
    }
    
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        padding: 0;
        order: 2;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-mobile-cards {
        display: block;
        margin-top: 2rem;
    }
    
    .hero-mobile-cards .floating-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-description,
    .hero-solution {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .floating-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .floating-card {
        padding: 10px;
        min-height: 80px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problem, .solution {
        padding: 1.5rem;
    }
    
    .problem-list li, .benefits-list li {
        margin-bottom: 0.8rem;
    }
    
    .strategy-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        top: -25px;
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .results-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
    
    .result-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
        min-height: auto;
    }
    
    .slider-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .slider-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .slide {
        padding: 1rem;
    }
    
    .final-cta {
        padding: 3rem 0;
    }
    
    .cta-content {
        padding: 1.5rem;
    }
    
    .cta-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo {
        margin-bottom: 1rem;
    }
    
    .footer-links, .footer-contact {
        margin-bottom: 1rem;
    }
    
    .growth-animation {
        padding: 1.5rem;
    }
    
    .growth-chart {
        height: 80px;
    }
}

/* Typography Responsive Adjustments */
@media (max-width: 768px) {
    body {
        line-height: 1.5;
    }
    
    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 0.8rem;
    }
    
    p {
        margin-bottom: 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header p {
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-title .highlight {
        font-size: 1.9rem;
    }
    
    .hero-title .subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .floating-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        min-height: 70px;
    }
    
    .floating-card i {
        font-size: 1.2rem;
    }
    
    .floating-card span {
        font-size: 0.9rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .problem h3, .solution h3 {
        font-size: 1.3rem;
    }
    
    .problem p, .solution p, .problem-list li, .benefits-list li {
        font-size: 0.9rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        top: -20px;
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
}