@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kaushan+Script&family=Knewave&display=swap');

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/opensans-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/opensans-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/opensans-700.ttf') format('truetype');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/outfit-300.ttf') format('truetype');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/outfit-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/outfit-500.ttf') format('truetype');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/outfit-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/outfit-700.ttf') format('truetype');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/outfit-800.ttf') format('truetype');
}

@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/syne-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/syne-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/syne-700.ttf') format('truetype');
}

@font-face {
    font-family: 'Syne';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/syne-800.ttf') format('truetype');
}

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

*:focus-visible {
    outline: 0.125rem solid #00D4FF;
    outline-offset: 0.25rem;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 7.5rem;
    font-size: 16px;
}

body {
    font-family: 'Outfit', system-ui, sans-serif;
    background: #050b24;
    color: #F1F5F9;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

:root {
    --blue-900: #001A66;
    --blue-800: #002799;
    --blue-700: #003ACC;
    --blue-600: #0047F5;
    --blue-500: #1A5CFF;
    --blue-400: #4D80FF;
    --blue-100: #EBF0FF;
    --blue-50: #F4F7FF;
    --cyan: #00D4FF;
    --cyan-bright: #00FFCC;
    --electric: #0047F5;
    --glow-blue: rgba(0, 71, 245, 0.6);
    --glow-cyan: rgba(0, 212, 255, 0.45);
    --gray-900: #13162A;
    --gray-700: #3A3D52;
    --gray-500: #6B6E86;
    --gray-300: #C8CAD8;
    --gray-100: #F5F6FA;
    --white: #FFFFFF;
    --radius-sm: 0.5rem;
    --radius-md: 0.875rem;
    --radius-lg: 1.375rem;
    --radius-xl: 2rem;
}

.t-display {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.t-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.t-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: linear-gradient(90deg, var(--cyan) 0%, var(--cyan-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s cubic-bezier(.22, .68, 0, 1.1), transform 0.75s cubic-bezier(.22, .68, 0, 1.1);
}

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

.fade-up.d1 {
    transition-delay: 0.07s;
}

.fade-up.d2 {
    transition-delay: 0.15s;
}

.fade-up.d3 {
    transition-delay: 0.23s;
}

.fade-up.d4 {
    transition-delay: 0.31s;
}

.fade-up.d5 {
    transition-delay: 0.39s;
}

.fade-up.d6 {
    transition-delay: 0.47s;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.875rem;
    border-radius: 0.375rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s, background 0.22s;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::after {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-3px) scale(1.03);
}

.btn:active {
    transform: translateY(0) scale(0.99);
}

.btn-primary {
    background: linear-gradient(135deg, #0066FF 0%, #003ACC 50%, #001A99 100%);
    background-size: 200% auto;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 10, 40, 0.35);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-position 0.4s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    animation: btn-shine-sweep 5s infinite ease-in-out;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 24px rgba(0, 10, 40, 0.45);
}

.btn-ghost-light {
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.btn-outline-dark {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline-dark:hover {
    border-color: rgba(0, 212, 255, 0.6);
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.06);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.12);
}

.top-bar-nngg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #030712;
    z-index: 2000;
    border-bottom: none;
}

.top-bar-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 2.5rem;
    padding: 0 2.5rem;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    letter-spacing: 0.0312rem;
    transition: all 0.3s ease;
}

.top-bar-item i {
    color: var(--accent, #00D4FF);
    font-size: 0.75rem;
}

.top-bar-item:hover {
    color: #FFFFFF;
}

.top-bar-socials {
    display: flex;
    gap: 1.125rem;
    align-items: center;
}

.top-bar-socials a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 0.85rem;
    display: inline-block;
}

.top-bar-socials a:hover {
    color: var(--accent, #00D4FF);
    transform: translateY(-2px);
}

.spain-flag-divider {
    width: 100%;
    height: 0.375rem;
    background: linear-gradient(to bottom, #AA151B 33.3%, #F1BF00 33.3%, #F1BF00 66.6%, #AA151B 66.6%);
    box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .top-bar-content {
        padding: 0 1rem;
    }
}

.ig-profile-widget {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 10;
    width: 460px;
    max-width: calc(100% - 5rem);
    margin: 0;
    padding: 0;
}

.ig-profile-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s, background 0.3s;
}

.ig-profile-inner:hover {
    border-color: rgba(188, 24, 136, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.ig-avatar-wrap {
    position: relative;
    flex-shrink: 0;
    width: 72px;
    height: 72px;
}

.ig-avatar-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    z-index: 0;
}

.ig-avatar {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #050b24;
    display: block;
}

.ig-profile-info {
    flex: 1;
    min-width: 0;
}

.ig-handle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.ig-logo-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.ig-username {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

.ig-bio {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ig-stats {
    display: flex;
    gap: 1.5rem;
}

.ig-stat {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.ig-stat-n {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
}

.ig-stat-l {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, #bc1888 0%, #dc2743 50%, #e6683c 100%);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.ig-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(188, 24, 136, 0.4);
}

@media (max-width: 600px) {
    .ig-profile-inner {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ig-bio {
        white-space: normal;
    }

    .ig-follow-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .ig-profile-widget {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 440px;
        margin: 2rem auto 0;
        padding: 0 1rem;
    }

    .ig-profile-inner {
        padding: 0.85rem 1rem;
        gap: 0.85rem;
        border-radius: 0.875rem;
    }

    .ig-avatar-wrap,
    .ig-avatar {
        width: 50px;
        height: 50px;
    }

    .ig-avatar-ring {
        inset: -2px;
    }

    .ig-username {
        font-size: 0.8rem;
    }

    .ig-logo-icon {
        width: 14px;
        height: 14px;
    }

    .ig-bio {
        font-size: 0.65rem;
        margin-bottom: 0.35rem;
    }

    .ig-stat-n {
        font-size: 0.7rem;
    }

    .ig-stat-l {
        font-size: 0.55rem;
    }

    .ig-follow-btn {
        padding: 0.4rem 0.85rem;
        font-size: 0.7rem;
        gap: 0.3rem;
        border-radius: 0.35rem;
    }

    .ig-follow-btn svg {
        width: 10px;
        height: 10px;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(91, 255, 160, 0.7), 0 0 10px #5BFFA0;
    }

    50% {
        box-shadow: 0 0 0 8px rgba(91, 255, 160, 0), 0 0 18px #5BFFA0;
    }
}

@keyframes hero-em-shimmer {
    0% {
        background-position: 250% center;
    }

    100% {
        background-position: 0% center;
    }
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.4);
        opacity: 0.3;
    }
}

@keyframes pulseGreen {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 255, 204, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 9px rgba(0, 255, 204, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(0, 255, 204, 0);
    }
}

.section {
    padding: 7rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-full {
    padding: 7rem 2rem;
}

.section-eyebrow {
    margin-bottom: 0.75rem;
    display: inline-block;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(0, 212, 255, 0.15) 20%, rgba(0, 212, 255, 0.15) 80%, transparent 100%);
    max-width: 1100px;
    margin: 0 auto;
}

#vision {
    background-color: #050b24;
    position: relative;
    overflow: hidden;
}

#vision::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    top: -200px;
    right: -250px;
    background: radial-gradient(circle, rgba(0, 71, 245, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.vision-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .vision-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.vision-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.vision-title-spain {
    color: #FFFFFF;
}

.vision-body {
    font-size: 1.0625rem;
    color: #cbd5e1;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.vision-body strong {
    color: #FFFFFF;
    font-weight: 500;
}

#vision .vision-body.d4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.65;
}

#vision .vision-body.d5 {
    margin-bottom: 1.5rem;
}

.vision-quote {
    margin: 2rem 0;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-left: 2px solid transparent;
    background: linear-gradient(#050b24, #050b24) padding-box, linear-gradient(135deg, var(--cyan) 0%, var(--cyan-bright) 100%) border-box;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    position: relative;
}

.vision-quote::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.06) 0%, transparent 100%);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.vision-quote p {
    font-family: 'Syne', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #A5F3FC;
    line-height: 1.55;
    position: relative;
}

.vision-right {
    position: relative;
}

.vision-card-stack {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.vision-card-stack .card-content-rel {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    width: 100%;
}

.vision-card {
    background: rgba(255, 255, 255, 0.025);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.7rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.vision-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.vision-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(6px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.vision-card:hover::after {
    opacity: 1;
}

.vision-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.6875rem;
    background: rgba(0, 71, 245, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s;
}

.vision-card:hover .vision-card-icon {
    background: rgba(0, 71, 245, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.25);
}

.vision-card-icon svg {
    width: 1.4375rem;
    height: 1.4375rem;
}

.vision-card-icon svg path {
    stroke: var(--cyan);
}

.vision-card-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.08rem;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.vision-card-body {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
}

.vision-card.highlight {
    background: linear-gradient(135deg, rgba(0, 71, 245, 0.35) 0%, rgba(0, 39, 153, 0.4) 100%);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 71, 245, 0.25);
}

.vision-card.highlight .vision-card-title {
    color: white;
}

.vision-card.highlight .vision-card-body {
    color: rgba(255, 255, 255, 0.7);
}

.vision-card.highlight .vision-card-icon {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.vision-card.highlight .vision-card-icon svg path {
    stroke: white;
}

#manifiesto {
    background-color: #020818;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 212, 255, 0.05);
}

#manifiesto .section {
    padding: 6rem 2rem;
}

#manifiesto .vision-title {
    background: linear-gradient(135deg, #38D9FF 0%, #00FFCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

#manifiesto .vision-body.d2 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

#manifiesto .vision-body.d3 {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 1.25rem;
}

#manifiesto .vision-body.d4 {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin: 0;
}

#manifiesto .vision-card.highlight {
    padding: 2.25rem;
    background: linear-gradient(135deg, rgba(0, 71, 245, 0.25) 0%, rgba(0, 20, 80, 0.30) 100%);
    border: 1px solid rgba(0, 212, 255, 0.18);
}

#manifiesto .vision-card.highlight .card-content-rel {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    width: 100%;
}

#manifiesto .vision-card.highlight p.manifest-card-p1 {
    font-size: 1.1rem;
    color: #A5F3FC;
    font-weight: 600;
    font-family: 'Syne', sans-serif;
    margin: 0;
    line-height: 1.4;
}

#manifiesto .vision-card.highlight p.manifest-card-p2 {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.80);
    margin: 0;
}

#manifiesto .vision-card.highlight .manifest-card-divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 212, 255, 0.15);
    margin: 0.25rem 0;
}

#manifiesto .vision-card.highlight .manifest-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

#manifiesto .vision-card.highlight .manifest-card-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#manifiesto .vision-card.highlight .manifest-card-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

#manifiesto .vision-card.highlight .manifest-card-dot.blue {
    background: #00D4FF;
    box-shadow: 0 0 10px #00D4FF;
}

#manifiesto .vision-card.highlight .manifest-card-dot.cyan {
    background: #00FFCC;
    box-shadow: 0 0 10px #00FFCC;
}

#manifiesto .vision-card.highlight .manifest-card-dot.green {
    background: #5BFFA0;
    box-shadow: 0 0 10px #5BFFA0;
}

#manifiesto .vision-card.highlight .manifest-card-text {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
    color: #FFFFFF;
    letter-spacing: -0.01em;
}

@keyframes marquee-scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee-scroll-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

#sumate-aval {
    background-color: #030822;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 212, 255, 0.05);
}

#sumate-aval::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    top: -200px;
    left: -250px;
    background: radial-gradient(circle, rgba(0, 71, 245, 0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.sumate-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    position: relative;
    z-index: 1;
}

#sumate-aval .sumate-title {
    background: linear-gradient(135deg, #38D9FF 0%, #00FFCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.sumate-header .sumate-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #cbd5e1;
    font-family: 'Outfit', sans-serif;
    max-width: 680px;
    margin: 0 auto;
}

.sumate-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

#sumate-aval .sumate-pdf-card,
#sumate-aval .sumate-steps-card {
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(6, 15, 45, 0.6) 0%, rgba(2, 8, 24, 0.7) 100%);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 1.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}

#sumate-aval .sumate-pdf-card:hover,
#sumate-aval .sumate-steps-card:hover {
    border-color: rgba(0, 212, 255, 0.25);
    transform: translateY(-4px);
}

.steps-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    color: #38BDF8;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.steps-card-title i {
    color: var(--cyan);
}

.sumate-card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

#sumate-aval .sumate-action-btn {
    margin-top: 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

#sumate-aval .download-aval-btn {
    position: relative;
    overflow: hidden;
    padding: 1.15rem 2.25rem;
    font-size: 1.1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    background: linear-gradient(135deg, #0047F5 0%, #00D4FF 100%);
    border: none;
    color: #FFFFFF !important;
    box-shadow: 0 0 20px rgba(0, 71, 245, 0.25), 0 10px 30px rgba(0, 212, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    text-decoration: none;
    cursor: pointer;
    animation: btn-pulse-breathing 3s infinite ease-in-out;
}

#sumate-aval .download-aval-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
    z-index: 2;
    animation: btn-shine-sweep 4.5s infinite ease-in-out;
}

#sumate-aval .download-aval-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 0 35px rgba(0, 71, 245, 0.55), 0 15px 45px rgba(0, 212, 255, 0.5);
    background: linear-gradient(135deg, #0056FF 0%, #00E5FF 100%);
    animation: none;
}

#sumate-aval .download-aval-btn svg {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#sumate-aval .download-aval-btn:hover svg {
    transform: translateY(4px);
}

.sumate-pdf-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.sumate-pdf-step-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.sumate-pdf-step-item i {
    color: var(--cyan);
    font-size: 0.95rem;
    width: 20px;
    text-align: center;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.sumate-pdf-step-item strong {
    color: #FFFFFF;
}

.sumate-pdf-step-item a {
    color: #38b0ff;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.sumate-pdf-step-item a:hover {
    color: #00FFCC;
}

.sumate-checkbox-container {
    margin: 0.25rem 0;
    font-size: 0.8rem;
}

.sumate-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.sumate-checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.15rem;
    height: 1.15rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0.15rem 0 0 0;
    flex-shrink: 0;
}

.sumate-checkbox-label input[type="checkbox"]:focus-visible {
    outline: none;
    border-color: #00D4FF;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.sumate-checkbox-label input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #0047F5 0%, #00D4FF 100%);
    border-color: #00D4FF;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.sumate-checkbox-label input[type="checkbox"]::after {
    content: '';
    width: 4px;
    height: 8px;
    border: 2px solid white;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg) scale(0);
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 2px;
}

.sumate-checkbox-label input[type="checkbox"]:checked::after {
    transform: rotate(45deg) scale(1);
    opacity: 1;
}

.sumate-checkbox-label a {
    color: #00D4FF;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.sumate-checkbox-label a:hover {
    color: #00FFCC;
}

.sumate-submit-btn {
    padding: 0.85rem 1.25rem;
    width: 100%;
    border-radius: 0.6rem;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0047F5 0%, #00D4FF 100%);
    border: none;
    color: #FFFFFF !important;
    cursor: pointer;
    transition: all 0.3s;
}

.sumate-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 71, 245, 0.4);
    background: linear-gradient(135deg, #0056FF 0%, #00E5FF 100%);
}

@media (max-width: 992px) {
    .sumate-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    #sumate-aval .sumate-pdf-card,
    #sumate-aval .sumate-steps-card {
        padding: 2.25rem 1.75rem;
    }

    .sumate-header {
        margin-bottom: 2.5rem;
    }
}

#cta {
    background: linear-gradient(180deg, #030d2e 0%, #010820 100%);
    position: relative;
    overflow: hidden;
}

.cta-orb1 {
    position: absolute;
    width: 43.75rem;
    height: 43.75rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 100, 255, 0.22) 0%, rgba(0, 212, 255, 0.08) 45%, transparent 70%);
    top: -300px;
    right: -180px;
    pointer-events: none;
    animation: orbFloat 20s ease-in-out infinite alternate;
}

.cta-orb2 {
    position: absolute;
    width: 31.25rem;
    height: 31.25rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 65%);
    bottom: -200px;
    left: -100px;
    pointer-events: none;
    animation: orbFloat 25s ease-in-out infinite alternate-reverse;
}

@keyframes orbFloat {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(40px, -30px) scale(1.1);
    }
}

#cta .section-full {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

#cta .section-eyebrow {
    color: rgba(255, 255, 255, 0.55);
    justify-content: center;
    display: flex;
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 1.25rem;
    color: white;
}

.cta-title-spain {
    color: #FFFFFF;
}

.cta-title-happy {
    background: linear-gradient(135deg, #00D4FF 0%, #00FFCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}

.cta-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3.5rem 0;
    text-align: left;
}

.cta-pillar-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    justify-content: center;
    min-height: 5.625rem;
}

.cta-pillar-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.cta-pillar-card p {
    font-size: 1.1rem;
    color: #FFFFFF;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.cta-pillar-card strong.cyan-glow {
    color: #00D4FF;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.15);
}

.cta-pillar-card strong.green-glow {
    color: #00FFCC;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.15);
}

@media (max-width: 820px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
        max-width: 30rem;
        margin: 3rem auto;
    }
}

.cta-juntos {
    margin: 3.5rem 0 4rem;
    text-align: center;
}

.cta-juntos p:first-child {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cta-juntos .cta-juntos-highlight {
    font-size: clamp(3.2rem, 8vw, 4.8rem);
    font-weight: 900;
    font-family: 'Syne', sans-serif;
    background: linear-gradient(135deg, #00D4FF 0%, #00FFCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
    margin: 0;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.cta-action {
    margin: 2.5rem 0 3.5rem;
}

.cta-action .btn-primary {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 24px rgba(0, 10, 40, 0.35);
}

.cta-social-wrapper {
    max-width: 40rem;
    margin: 0 auto;
}

.cta-divider {
    width: 1px;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    margin: 3rem auto;
}

.cta-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.cta-social span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-social-link:hover {
    color: #00D4FF;
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

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

    100% {
        transform: translateX(100%);
    }
}

.card-with-bg {
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    border: 1px solid rgba(0, 212, 255, 0.12) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.card-bg-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
    transform: scale(1.02);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) !important;
    filter: saturate(1.1);
}

.card-with-bg:hover .card-bg-img {
    transform: scale(1.1) !important;
}

.card-bg-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(160deg, rgba(0, 15, 60, 0.2) 0%, rgba(0, 20, 80, 0.62) 45%, rgba(0, 5, 30, 0.95) 100%) !important;
    z-index: 2 !important;
    transition: background 0.5s ease !important;
}

.card-with-bg:hover .card-bg-overlay {
    background: linear-gradient(160deg, rgba(0, 15, 60, 0.12) 0%, rgba(0, 20, 80, 0.50) 45%, rgba(0, 5, 30, 0.90) 100%) !important;
}

.card-content-rel {
    position: relative !important;
    z-index: 3 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

#sugerencias {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #050b24 0%, #020c30 50%, #050b24 100%);
}

.form-success-msg {
    background: rgba(16, 185, 129, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.2) !important;
    color: #34d399 !important;
    border-radius: 0.5rem !important;
    padding: 1.5rem !important;
    text-align: center !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin: auto 0 !important;
}

.form-success-icon {
    font-size: 2.5rem !important;
    margin-bottom: 0.75rem !important;
    display: block !important;
    color: #34d399 !important;
}

.form-error-msg {
    background: rgba(239, 68, 68, 0.1) !important;
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
    color: #ff6b6b !important;
    border-radius: 0.5rem !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.85rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    justify-content: center !important;
}

.cookie-banner-inner {
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    flex-direction: column; 
    gap: 1rem; 
    align-items: center; 
    justify-content: space-between; 
    text-align: center;
}

.cookie-banner-text {
    margin: 0; 
    line-height: 1.5; 
    max-width: 850px;
}

.cookie-banner-link {
    color: #00D4FF; 
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.cookie-banner-link:hover {
    color: #00FFCC;
}

.cookie-banner-actions {
    display: flex; 
    gap: 0.75rem; 
    flex-shrink: 0;
}

.cookie-banner-btn-accept {
    background: linear-gradient(135deg, #0047F5 0%, #00D4FF 100%);
    color: white; 
    border: none; 
    padding: 0.6rem 1.5rem; 
    border-radius: 0.5rem; 
    cursor: pointer; 
    font-weight: bold;
    font-family: 'Outfit', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0, 71, 245, 0.3);
}

.cookie-banner-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, #0056FF 0%, #00FFCC 100%);
}
