/* Reset y Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #0066ff;
    --text-color: #333;
    --bg-color: #fff;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: auto;
    /* Lenis manejará el scroll */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    overflow-x: hidden;
    cursor: auto;
    /* Cursor por defecto */
}

/* Mantener cursor nativo pero agregar efecto de círculo */
body * {
    cursor: inherit;
}

/* Cursor Personalizado - Solo círculo de hover */
#cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: difference;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Ocultar el dot, solo mostrar el círculo en hover */
.cursor-dot {
    display: none !important;
}

#cursor * {
    visibility: visible !important;
    opacity: 1 !important;
}

.cursor-bg {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

.cursor-arrow {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
    transition: opacity 0.2s, transform 0.2s;
    will-change: transform, opacity;
}

.cursor-arrow::before {
    content: '';
    color: var(--secondary-color);
    font-size: 20px;
    display: block;
    text-align: center;
}

.cursor-cta {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.cursor-drag {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Estados del cursor */
#cursor[data-state="hover"] .cursor-bg {
    transform: translate(-50%, -50%) scale(1);
}

#cursor[data-state="cta"] .cursor-bg {
    transform: translate(-50%, -50%) scale(1.5);
    width: 60px;
    height: 60px;
}

#cursor[data-state="arrow"] .cursor-arrow {
    opacity: 1;
}

#cursor[data-state="drag"] .cursor-drag {
    transform: translate(-50%, -50%) scale(1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    background: #000428;
    /* fallback for old browsers */
    background: radial-gradient(ellipse at center, #000428 0%, #004e92 100%);
    color: var(--secondary-color);
    text-align: center;
    overflow: hidden;
}

/* Canvas de simulación de fluidos WebGL */
.smoke-canvas,
.banner_canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
    opacity: 1;
    mix-blend-mode: screen;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-2 {
    background: #0066ff;
    color: white;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
    z-index: 3;
}

.scroll-down:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-down span {
    font-size: 0.9rem;
}

.scroll-down svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Secciones Generales */
.section {
    padding: 5rem 2rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #666;
}

.content-wrapper {
    max-width: 800px;
    margin: 0;
}

.why-section__wrapper .content-wrapper {
    max-width: 100%;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Why Section */
.why-section {
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.why-section__wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    position: relative;
}

/* Rocket Container */
.rocket-container {
    position: relative;
    width: 200px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: rocketFadeIn 1s ease-out 0.5s forwards;
}

.rocket {
    position: relative;
    font-size: 8rem;
    color: var(--accent-color);
    animation: rocketFloat 3s ease-in-out infinite;
    transform-origin: center bottom;
    z-index: 2;
}

.rocket i {
    filter: drop-shadow(0 0 20px rgba(0, 102, 255, 0.3));
    transition: transform 0.3s var(--transition);
}

.rocket:hover i {
    transform: scale(1.1) rotate(10deg);
}

/* Rocket Fire Animation */
.rocket-fire {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
}

.fire {
    width: 12px;
    background: linear-gradient(to top, #ff6b35, #f7931e, #ffd700);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}

.fire-1 {
    height: 60px;
    animation: fireFlicker 0.5s ease-in-out infinite alternate;
    animation-delay: 0s;
}

.fire-2 {
    height: 70px;
    animation: fireFlicker 0.6s ease-in-out infinite alternate;
    animation-delay: 0.2s;
}

.fire-3 {
    height: 65px;
    animation: fireFlicker 0.55s ease-in-out infinite alternate;
    animation-delay: 0.1s;
}

.fire::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(255, 107, 53, 0.8), transparent);
    border-radius: 50%;
    filter: blur(5px);
}

/* Animations */
@keyframes rocketFadeIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rocketFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(-2deg);
    }

    50% {
        transform: translateY(-25px) rotate(0deg);
    }

    75% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes fireFlicker {
    0% {
        transform: scaleY(1) scaleX(1);
        opacity: 0.9;
    }

    50% {
        transform: scaleY(0.9) scaleX(1.1);
        opacity: 1;
    }

    100% {
        transform: scaleY(1.1) scaleX(0.9);
        opacity: 0.8;
    }
}

/* Responsive Rocket */
@media (max-width: 1024px) {
    .why-section__wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .rocket-container {
        width: 150px;
        height: 300px;
        margin: 0 auto;
    }

    .rocket {
        font-size: 6rem;
    }

    .rocket-fire {
        bottom: -30px;
        width: 45px;
        height: 60px;
    }

    .fire-1 {
        height: 45px;
    }

    .fire-2 {
        height: 50px;
    }

    .fire-3 {
        height: 48px;
    }
}

@media (max-width: 768px) {
    .rocket-container {
        width: 120px;
        height: 250px;
    }

    .rocket {
        font-size: 5rem;
    }

    .rocket-fire {
        bottom: -25px;
        width: 35px;
        height: 50px;
    }

    .fire {
        width: 8px;
    }

    .fire-1 {
        height: 35px;
    }

    .fire-2 {
        height: 40px;
    }

    .fire-3 {
        height: 38px;
    }
}

/* Services Section */
.services-section {
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Approach Section */
.approach-section {
    background: var(--bg-color);
}

.media {
    margin-top: 3rem;
    overflow: hidden;
    border-radius: 12px;
}

.parallax-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section .section-title,
.contact-section .section-subtitle {
    position: relative;
    z-index: 1;
}

.contact-form {
    max-width: 800px;
    margin: 3rem auto 0;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-section .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }

    .contact-section .section-subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-bottom: 2rem;
    }
}

/* Timeline Progress Indicator */
.form-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-step:not(:last-child) {
    margin-right: 1rem;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(0, 102, 255, 0.3);
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s var(--transition);
}

.timeline-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 8px rgba(0, 102, 255, 0.1);
    animation: timelinePulse 2s ease-in-out infinite;
    transform: scale(1);
}

.timeline-dot.active::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0;
    animation: timelineRipple 2s ease-out infinite;
    z-index: -1;
}

.timeline-dot.completed {
    background: var(--accent-color);
    border-color: var(--accent-color);
    animation: timelineComplete 0.5s ease-out;
}

.timeline-dot.completed::after {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
    animation: timelineCheckmark 0.5s ease-out;
}

/* Animaciones del timeline */
@keyframes timelinePulse {

    0%,
    100% {
        box-shadow: 0 0 0 8px rgba(0, 102, 255, 0.1),
            0 0 0 0 rgba(0, 102, 255, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(0, 102, 255, 0.1),
            0 0 0 8px rgba(0, 102, 255, 0.2);
        transform: scale(1.05);
    }
}

@keyframes timelineRipple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes timelineComplete {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes timelineCheckmark {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.3) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.timeline-line {
    position: absolute;
    top: 20px;
    left: calc(50% + 20px);
    width: calc(100% - 40px);
    height: 3px;
    background: rgba(0, 102, 255, 0.2);
    z-index: 1;
    transition: background 0.5s var(--transition);
    overflow: hidden;
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.8s ease-out;
    opacity: 0;
}

.timeline-step.active .timeline-line::after {
    width: 100%;
    opacity: 1;
    animation: timelineLineProgress 1.2s ease-out forwards;
}

.timeline-step.completed .timeline-line::after {
    width: 100%;
    opacity: 1;
    background: var(--accent-color);
}

@keyframes timelineLineProgress {
    0% {
        width: 0;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

.timeline-step:last-child .timeline-line {
    display: none;
}

.timeline-label {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    transition: all 0.3s var(--transition);
}

.timeline-step.active .timeline-label {
    color: var(--accent-color);
    font-weight: 600;
    animation: timelineLabelGlow 2s ease-in-out infinite;
    transform: translateY(0);
}

@keyframes timelineLabelGlow {

    0%,
    100% {
        text-shadow: 0 0 5px rgba(0, 102, 255, 0.3);
    }

    50% {
        text-shadow: 0 0 10px rgba(0, 102, 255, 0.5),
            0 0 15px rgba(0, 102, 255, 0.3);
    }
}

/* Multi-step Form */
.multi-step-form {
    position: relative;
    min-height: 400px;
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 0.75rem;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s var(--transition);
    background: var(--bg-color);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.15);
}

.form-group input.valid,
.form-group textarea.valid {
    border-color: #27ae60;
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s var(--transition);
    overflow: hidden;
    line-height: 1.4;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
    min-height: auto;
    max-height: 2rem;
    margin-bottom: 0.25rem;
}

.error-message::before {
    content: '⚠ ';
    margin-right: 0.25rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-question {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.form-subtext {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Currency Selector */
.currency-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.currency-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s var(--transition);
}

.currency-btn:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.currency-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* Budget Range Buttons */
.budget-range {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.budget-btn {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    background: transparent;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    position: relative;
}

.budget-btn:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.budget-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.budget-other-input {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.budget-other-input input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s var(--transition);
}

.budget-other-input input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

/* Custom Checkbox */
.checkbox-group {
    margin-top: 2rem;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition);
    flex-shrink: 0;
}

.custom-checkbox input[type="checkbox"]:checked+.checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: bold;
}

.checkbox-label {
    font-size: 1rem;
    color: var(--text-color);
}

/* Timeline Options */
.timeline-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.timeline-btn {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    background: transparent;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    text-align: center;
}

.timeline-btn:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.timeline-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* Services Checkboxes */
.services-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-checkbox {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    user-select: none;
}

.service-checkbox:hover {
    border-color: var(--accent-color);
    background: rgba(0, 102, 255, 0.05);
}

.service-checkbox input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.service-checkbox input[type="checkbox"]:checked~.service-label {
    color: var(--accent-color);
    font-weight: 600;
}

.service-label {
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s var(--transition);
}

/* File Upload Section */
.file-upload-section {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s var(--transition);
}

.file-upload-section:hover {
    border-color: var(--accent-color);
    background: rgba(0, 102, 255, 0.02);
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.file-upload-label i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.file-types {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.file-type {
    padding: 0.5rem 1rem;
    background: rgba(0, 102, 255, 0.1);
    color: var(--accent-color);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

.file-upload-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition);
}

.file-upload-btn:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.file-name {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #666;
}

/* Form Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    gap: 1rem;
}

.form-next-btn,
.form-submit-btn {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-next-btn:hover,
.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-back-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-back-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateX(-5px);
}

.privacy-text {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #666;
    text-align: center;
}

/* Responsive Form */
@media (max-width: 768px) {
    .contact-form {
        max-width: 100%;
        margin: 2rem auto 0;
        padding: 0 1rem;
    }

    .form-timeline {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        max-width: 100%;
    }

    .timeline-step {
        flex: 1;
        min-width: 0;
        position: relative;
    }

    .timeline-dot {
        width: 32px;
        height: 32px;
        border-width: 2px;
        margin: 0 auto;
    }

    .timeline-dot.active {
        box-shadow: 0 0 0 6px rgba(0, 102, 255, 0.1);
    }

    .timeline-dot.completed::after {
        font-size: 1rem;
    }

    .timeline-line {
        position: absolute;
        top: 16px;
        left: calc(50% + 16px);
        width: calc(100% - 32px);
        height: 2px;
    }

    .timeline-label {
        font-size: 0.7rem;
        margin-top: 0.5rem;
        line-height: 1.2;
        text-align: center;
        word-break: break-word;
        padding: 0 0.25rem;
    }

    .form-step {
        padding: 0;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .form-question {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .form-subtext {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }

    .currency-selector {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        justify-content: center;
    }

    .currency-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .budget-range {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .budget-btn {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .budget-other-input {
        margin-top: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .budget-other-input input {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .checkbox-group {
        margin-top: 1.5rem;
    }

    .checkmark {
        width: 22px;
        height: 22px;
    }

    .checkbox-label {
        font-size: 0.9rem;
    }

    .timeline-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: 0.75rem;
    }

    .timeline-btn {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .services-checkboxes {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .service-checkbox {
        padding: 0.875rem;
    }

    .service-label {
        font-size: 0.9rem;
    }

    .file-upload-section {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }

    .file-upload-label {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .file-upload-label i {
        font-size: 1.25rem;
    }

    .file-types {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .file-type {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }

    .file-upload-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.875rem;
    }

    .file-name {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    .form-navigation {
        flex-direction: column-reverse;
        gap: 0.75rem;
        margin-top: 2rem;
    }

    .form-next-btn,
    .form-submit-btn,
    .form-back-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .form-section {
        margin-bottom: 2rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .form-timeline {
        gap: 0.25rem;
        padding: 0;
    }

    .timeline-dot {
        width: 28px;
        height: 28px;
    }

    .timeline-label {
        font-size: 0.65rem;
        margin-top: 0.4rem;
    }

    .timeline-line {
        top: 14px;
        left: calc(50% + 14px);
        width: calc(100% - 28px);
    }

    .budget-range {
        grid-template-columns: 1fr;
    }

    .timeline-options {
        grid-template-columns: 1fr;
    }

    .currency-selector {
        gap: 0.5rem;
    }

    .currency-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Ocultar cursor personalizado solo en móviles */
    #cursor {
        display: none;
    }

    body {
        cursor: auto;
    }
}

/* Smooth scroll para elementos con data-lenis-prevent */
/* Los elementos con este atributo no serán afectados por Lenis */

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 2rem;
    transition: transform 0.3s var(--transition), background-color 0.3s var(--transition);
}

.header.hidden {
    transform: translateY(-100%);
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header__button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.header__burger {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transition: transform 0.3s var(--transition), opacity 0.3s var(--transition);
}

.header__burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Navigation Menu */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 110;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--transition), visibility 0.4s var(--transition);
}

.nav.open {
    opacity: 1;
    visibility: visible;
}

.nav__header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.nav__header>* {
    pointer-events: auto;
}

.nav__body {
    background-color: var(--bg-color);
    padding: 4rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.4s var(--transition);
    position: relative;
}

.nav.open .nav__body {
    transform: scale(1);
}

.nav__list {
    list-style: none;
    margin-bottom: 3rem;
}

.nav__item {
    margin-bottom: 2rem;
}

.nav__link {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.nav__link:hover {
    color: var(--accent-color);
}

.nav__contact {
    margin-bottom: 2rem;
    color: #666;
}

.nav__button {
    opacity: 1;
    /* Asegurar que sea visible */
    animation: none;
    /* Resetear animación */
}

.nav__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    transition: opacity 0.3s var(--transition);
}

.nav__logo:hover {
    opacity: 0.8;
}

.nav__close {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition);
    border-radius: 50%;
}

.nav__close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Responsive Menu */
@media (max-width: 768px) {
    .header__button {
        display: none;
    }

    .nav {
        backdrop-filter: none;
        background-color: transparent;
    }

    .nav__body {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.4s var(--transition);
    }

    .nav.open .nav__body {
        transform: translateX(0);
    }

    .nav__header {
        padding: 1.5rem 2rem;
        background-color: var(--bg-color);
    }

    .nav__logo {
        color: var(--text-color);
    }

    .nav__close {
        color: var(--text-color);
    }

    .nav__close:hover {
        background: rgba(0, 0, 0, 0.05);
    }
}

/* Service Card Icon */
.service-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Approach Section */
.approach-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.approach-step {
    padding: 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: var(--transition);
}

.approach-step:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.approach-step__number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.approach-step__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.why-woltryx {
    margin-top: 4rem;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(135deg, #000428 0%, #004e92 100%);
    color: var(--secondary-color);
    padding: 4rem 2rem 2rem;
    overflow: hidden;
}

.footer__wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    color: var(--secondary-color);
    opacity: 0.1;
    transform: rotate(180deg);
}

.footer__wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.footer__container {
    position: relative;
    z-index: 1;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer__brand {
    max-width: 400px;
}

.footer__logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: transform 0.3s var(--transition), opacity 0.3s var(--transition);
    cursor: pointer;
}

.footer__logo:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.footer__description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s var(--transition);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.footer__social-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer__group {
    display: flex;
    flex-direction: column;
}

.footer__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s var(--transition);
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 0;
}

.footer__link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s var(--transition);
}

.footer__link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
    padding-left: 10px;
}

.footer__link:hover::before {
    width: 5px;
}

.footer__contact-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s var(--transition);
    cursor: pointer;
}

.footer__contact-item i {
    width: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s var(--transition);
}

.footer__contact-item:hover {
    color: var(--secondary-color);
}

.footer__contact-item:hover i {
    color: var(--secondary-color);
}

.footer__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 3rem 0 2rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s var(--transition);
    cursor: pointer;
}

.footer__legal-link:hover {
    color: var(--secondary-color);
}

.footer__separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer__top {
        gap: 2.5rem;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer__legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer__separator {
        display: none;
    }

    .footer__social {
        justify-content: flex-start;
    }
}

/* Success Message */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.success-overlay.show {
    opacity: 1;
}

.success-box {
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-overlay.show .success-box {
    transform: scale(1);
}

.success-icon {
    width: 120px;
    height: 120px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.success-icon i {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s var(--transition);
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 0;
}

.footer__link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s var(--transition);
}

.footer__link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
    padding-left: 10px;
}

.footer__link:hover::before {
    width: 5px;
}

.footer__contact-item {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s var(--transition);
    cursor: pointer;
}

.footer__contact-item i {
    width: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s var(--transition);
}

.footer__contact-item:hover {
    color: var(--secondary-color);
}

.footer__contact-item:hover i {
    color: var(--secondary-color);
}

.footer__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 3rem 0 2rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s var(--transition);
    cursor: pointer;
}

.footer__legal-link:hover {
    color: var(--secondary-color);
}

.footer__separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer__links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer__top {
        gap: 2.5rem;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer__legal {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer__separator {
        display: none;
    }

    .footer__social {
        justify-content: flex-start;
    }
}

/* Success Message */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.success-overlay.show {
    opacity: 1;
}

.success-box {
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-overlay.show .success-box {
    transform: scale(1);
}

.success-icon {
    width: 120px;
    height: 120px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.success-icon i {
    font-size: 4rem;
    color: var(--accent-color);
    animation: like-animation 0.8s ease-in-out forwards;
}

@keyframes like-animation {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.2) rotate(-10deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.whatsapp-float i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-color);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Pulse Animation */
@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Ripple Effect on Click */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
}

.whatsapp-float:active::before {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }

    .whatsapp-tooltip {
        right: 70px;

        .footer__separator {
            display: none;
        }

        .footer__social {
            justify-content: flex-start;
        }
    }

    /* Success Message */
    .success-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

    .success-overlay.show {
        opacity: 1;
    }

    .success-box {
        transform: scale(0.5);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .success-overlay.show .success-box {
        transform: scale(1);
    }

    .success-icon {
        width: 120px;
        height: 120px;
        background-color: var(--secondary-color);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .success-icon i {
        font-size: 4rem;
        color: var(--accent-color);
        animation: like-animation 0.8s ease-in-out forwards;
    }

    @keyframes like-animation {
        0% {
            transform: scale(0.8);
            opacity: 0.8;
        }

        50% {
            transform: scale(1.2) rotate(-10deg);
            opacity: 1;
        }

        100% {
            transform: scale(1) rotate(0deg);
            opacity: 1;
        }
    }

    /* WhatsApp Floating Button */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
        color: var(--secondary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        z-index: 9998;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        cursor: pointer;
        animation: whatsappPulse 2s ease-in-out infinite;
    }

    .whatsapp-float:hover {
        transform: scale(1.1) translateY(-5px);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
        background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    }

    .whatsapp-float i {
        position: relative;
        z-index: 2;
        transition: transform 0.3s ease;
    }

    .whatsapp-float:hover i {
        transform: rotate(15deg) scale(1.1);
    }

    /* Tooltip */
    .whatsapp-tooltip {
        position: absolute;
        right: 75px;
        background: var(--primary-color);
        color: var(--secondary-color);
        padding: 0.75rem 1.25rem;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 500;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        pointer-events: none;
    }

    .whatsapp-tooltip::after {
        content: '';
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid var(--primary-color);
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }

    .whatsapp-float:hover .whatsapp-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    /* Pulse Animation */
    @keyframes whatsappPulse {

        0%,
        100% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
                0 0 0 0 rgba(37, 211, 102, 0.7);
        }

        50% {
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
                0 0 0 15px rgba(37, 211, 102, 0);
        }
    }

    /* Ripple Effect on Click */
    .whatsapp-float::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.5s ease-out;
    }

    .whatsapp-float:active::before {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .whatsapp-float {
            bottom: 20px;
            right: 20px;
            width: 55px;
            height: 55px;
            font-size: 1.75rem;
        }

        .whatsapp-tooltip {
            right: 70px;
            padding: 0.6rem 1rem;
            font-size: 0.85rem;
        }
    }

    @media (max-width: 480px) {
        .whatsapp-float {
            bottom: 15px;
            right: 15px;
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
        }

        .whatsapp-tooltip {
            display: none;
            /* Hide tooltip on very small screens */
        }
    }

    /* Footer Credits Styling */
    .footer__credits {
        text-align: center;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer__credits p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
        margin: 0;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
    }

    .footer__credits p:hover {
        color: rgba(255, 255, 255, 0.8);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .footer__credits {
            margin-top: 1.5rem;
            padding-top: 1rem;
        }

        .footer__credits p {
            font-size: 0.8rem;
        }
    }
}