@media (max-width: 700px) {
    #nav {
        padding: 0 1.25rem;
        height: 4.125rem;
    }

    #hero {
        padding-top: calc(4.125rem + 46px);
    }

    #nav.scrolled {
        height: 3.75rem;
    }

    .nav-logo-img {
        height: 2.6rem;
    }

    #nav.scrolled .nav-logo-img {
        height: 2.2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 20rem;
        height: 100vh;
        background: rgba(2, 9, 36, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.25rem;
        z-index: 2050;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 3rem 2rem 2rem 2rem;
        margin: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-mobile-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        margin-top: -1rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .nav-mobile-logo {
        height: 3.6rem;
        width: auto;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 4px 15px rgba(0, 212, 255, 0.35));
    }

    .nav-mobile-claim {
        font-family: 'Syne', sans-serif;
        font-weight: 850;
        font-size: 0.78rem;
        letter-spacing: 0.12em;
        color: #FFFFFF;
        border-bottom: 1px solid rgba(0, 212, 255, 0.2);
        padding-bottom: 0.85rem;
        width: 75%;
        text-align: center;
        text-shadow: 0 0 12px rgba(0, 212, 255, 0.25);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.25rem;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
    }

    .nav-links a::after {
        display: none !important;
    }

    .nav-links a.active {
        color: #00D4FF !important;
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.45) !important;
    }

    .nav-links.open a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.open li:nth-child(1) a {
        transition-delay: 0.1s;
    }

    .nav-links.open li:nth-child(2) a {
        transition-delay: 0.15s;
    }

    .nav-links.open li:nth-child(3) a {
        transition-delay: 0.20s;
    }

    .nav-links.open li:nth-child(4) a {
        transition-delay: 0.25s;
    }

    .nav-links.open li:nth-child(5) a {
        transition-delay: 0.30s;
    }

    .nav-links li:last-child {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }

    .nav-links li:last-child a.btn {
        width: 100% !important;
        max-width: 220px !important;
        justify-content: center !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 1.05rem !important;
        border-radius: 99px !important;
        box-shadow: 0 8px 24px rgba(0, 71, 245, 0.35) !important;
    }

    .nav-toggle.open {
        background: rgba(0, 212, 255, 0.08);
        border-color: rgba(0, 212, 255, 0.35);
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.25);
    }

    .nav-toggle.open .nav-toggle-bar {
        background-color: #00D4FF;
    }

    .nav-toggle.open .nav-toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.open .nav-toggle-bar:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .nav-toggle.open .nav-toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

#hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 2rem 4.5rem;
    overflow: hidden;
    background-color: #020818;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    background-color: #020818;
    background-image: linear-gradient(to right, rgba(2, 8, 24, 1.0) 0%, rgba(2, 8, 24, 1.0) 25%, rgba(2, 8, 24, 0.7) 40%, transparent 50%), linear-gradient(to bottom, rgba(2, 8, 24, 0.6) 0%, transparent 15%, transparent 85%, rgba(2, 8, 24, 1.0) 100%), url('../img/landa3.webp');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    animation: kenBurns 12s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    mask-image: radial-gradient(circle at 50% 35%, transparent 35%, black 85%);
    -webkit-mask-image: radial-gradient(circle at 50% 35%, transparent 35%, black 85%);
    pointer-events: none;
}

@media (max-width: 768px) {
    #hero {
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: calc(4.875rem + 46px) 1.25rem 3.5rem;
        background: #020818;
    }

    .hero-video-bg {
        position: relative;
        width: 100vw;
        height: 56.25vw;
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        margin-bottom: 2rem;
        background: url('../img/landa3.webp') no-repeat center top / cover;
        animation: none;
        flex-shrink: 0;
    }

    .hero-video-bg::after {
        display: none;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        align-items: center !important;
        text-align: center;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero-title-juntos {
        font-size: clamp(3.2rem, 11vw, 5rem) !important;
        line-height: 0.9;
        text-align: center;
    }

    .hero-title-vamos {
        font-size: clamp(2.1rem, 8vw, 3.2rem) !important;
        line-height: 1.2;
        text-align: center;
        transform: rotate(-1.5deg);
        padding-top: 0.15em;
        padding-bottom: 0.15em;
    }

    .hero-subtitle {
        text-align: center;
        margin: 0 auto 2.5rem;
        font-size: 1.05rem;
        line-height: 1.55;
        max-width: 100%;
        text-shadow: none;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .ig-profile-widget {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 2.5rem 0 0 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 700px) {
    #hero {
        padding-top: calc(4.125rem + 46px);
    }
}

@keyframes kenBurns {
    from {
        transform: scale(1.1) translateY(0px);
    }

    to {
        transform: scale(1.0) translateY(0px);
    }
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 70% 55% at 85% 20%, rgba(0, 100, 255, 0.28) 0%, transparent 65%), radial-gradient(ellipse 45% 35% at 50% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 70%), radial-gradient(ellipse 55% 45% at 20% 80%, rgba(0, 212, 255, 0.10) 0%, transparent 65%);
    animation: meshDrift 12s ease-in-out infinite alternate;
    mix-blend-mode: screen;
}

.hero-aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-aurora::before {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    top: -320px;
    right: -220px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.14) 0%, rgba(0, 212, 255, 0.06) 40%, transparent 70%);
    animation: auroraFloat1 15s ease-in-out infinite alternate;
}

.hero-aurora::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    bottom: -100px;
    left: -160px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.16) 0%, rgba(0, 71, 245, 0.05) 50%, transparent 70%);
    animation: auroraFloat2 18s ease-in-out infinite alternate;
}

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

    to {
        transform: translate(-60px, 40px) scale(1.12);
    }
}

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

    to {
        transform: translate(50px, -30px) scale(1.08);
    }
}

@keyframes meshDrift {
    from {
        opacity: 0.75;
        transform: scale(1) rotate(0deg);
    }

    to {
        opacity: 1;
        transform: scale(1.07) rotate(1deg);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title-img-wrap {
    margin: 0 0 2rem 0;
    padding: 0;
    line-height: 0;
}

.hero-title-img {
    display: block;
    width: clamp(220px, 42vw, 520px);
    height: auto;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5)) brightness(1.05);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.5rem;
}

.hero-pulse {
    width: 0.4375rem;
    height: 0.4375rem;
    background: #5BFFA0;
    border-radius: 50%;
    animation: pulse 2.2s ease-in-out infinite;
    box-shadow: 0 0 10px #5BFFA0;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-title-juntos {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    line-height: 0.9;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-title-vamos {
    font-family: 'Knewave', cursive;
    font-size: clamp(2.5rem, 8vw, 6rem);
    color: #00D4FF;
    background: linear-gradient(135deg, #00F0FF 0%, #007CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: rotate(-1.5deg);
    display: inline-block;
    letter-spacing: 0.02em;
    line-height: 1.2;
    padding-top: 0.15em;
    padding-bottom: 0.15em;
    margin-top: -0.15rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.6vw, 1.35rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 2.75rem;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(0, 5, 20, 0.5);
}

.hero-actions {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-decoration: none;
    transition: color 0.3s, opacity 0.3s;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.hero-scroll-hint:hover {
    color: #00D4FF;
    opacity: 1;
}

.hero-scroll-line {
    width: 1px;
    height: 2.75rem;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.5));
    animation: scrollLine 2s ease-in-out infinite;
}

.hero-stats {
    position: relative;
    z-index: 2;
    margin-top: 4.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-stat-val {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    background: linear-gradient(to right, #FFFFFF 0%, rgba(0, 212, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 0.3125rem;
}

.hero-stat-lbl {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 212, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 212, 255, 0.1);
}

.hero-eyebrow-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #00FFCC;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 12px #00FFCC;
    animation: pulseGreen 2s infinite;
}

@media (max-width: 430px) {
    #hero {
        padding: calc(4.125rem + 46px) 1.25rem 3rem;
        justify-content: flex-start;
        min-height: auto;
    }

    .hero-eyebrow-badge {
        margin-bottom: 1.25rem;
        padding: 0.375rem 1rem;
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: clamp(2.3rem, 9.5vw, 3.1rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        margin-bottom: 2rem;
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.625rem;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-stats {
        margin-top: 3rem;
        padding-top: 1.5rem;
        gap: 1.75rem 2.5rem;
    }

    .hero-stat-val {
        font-size: 2.1rem;
    }

    .hero-scroll-hint {
        display: none !important;
    }
}

.hero-stats-strip {
    display: none;
}

@media (max-width: 1024px) {
    #hero .hero-stats {
        display: none !important;
    }

    .hero-stats-strip {
        display: block;
        background: #020818;
        border-bottom: 1px solid rgba(0, 212, 255, 0.08);
        position: relative;
        overflow: hidden;
        padding: 2.25rem 1.5rem;
        z-index: 10;
    }

    .hero-stats-strip::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 50%, rgba(0, 71, 245, 0.1) 0%, transparent 80%);
        pointer-events: none;
    }

    .hero-stats-strip-container {
        max-width: 37.5rem;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 1.5rem;
        position: relative;
        z-index: 2;
    }

    .hero-stats-strip .hero-stat-item {
        text-align: center;
        flex: 1;
    }

    .hero-stats-strip .hero-stat-divider {
        width: 1px;
        height: 2.5rem;
        background: rgba(255, 255, 255, 0.1);
    }

    .hero-stats-strip .hero-stat-val {
        font-family: 'Syne', sans-serif;
        font-weight: 800;
        font-size: 2.2rem;
        background: linear-gradient(135deg, #FFFFFF 0%, rgba(0, 212, 255, 0.9) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        line-height: 1;
        letter-spacing: -0.03em;
        margin-bottom: 0.375rem;
    }

    .hero-stats-strip .hero-stat-lbl {
        font-size: 0.72rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.65);
        text-transform: uppercase;
        letter-spacing: 0.12em;
        line-height: 1.3;
    }
}

@media (max-width: 560px) {
    .hero-stats-strip {
        padding: 1.15rem 0.5rem;
    }

    .hero-stats-strip-container {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: space-evenly;
    }

    .hero-stats-strip .hero-stat-divider {
        width: 1px;
        height: 1.75rem;
        background: rgba(255, 255, 255, 0.1);
    }

    .hero-stats-strip .hero-stat-val {
        font-size: 1.55rem;
        margin-bottom: 0.125rem;
    }

    .hero-stats-strip .hero-stat-lbl {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
    }
}

#pilares {
    background-color: #060d28;
    position: relative;
    overflow: hidden;
}

#pilares::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 60% 40% at 10% 60%, rgba(0, 71, 245, 0.12) 0%, transparent 70%), radial-gradient(ellipse 50% 40% at 90% 20%, rgba(0, 212, 255, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

#pilares .section-full {
    max-width: 1100px;
    margin: 0 auto;
}

.bento-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.bento-main-title {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    color: #FFFFFF;
    text-shadow: 0 0 60px rgba(0, 100, 255, 0.25);
}

.bento-header p.d2 {
    font-size: 1.0625rem;
    color: #cbd5e1;
    margin-top: 0.75rem;
    line-height: 1.65;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
    perspective: 1200px;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bcard-span2,
    .bcard-span3 {
        grid-column: span 1;
    }

    .bcard-span3:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 560px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bcard-span2,
    .bcard-span3,
    .bcard-span3:first-child {
        grid-column: span 1 !important;
    }

    .bcard {
        padding: 1.5rem 1.25rem !important;
        border-radius: var(--radius-md) !important;
    }

    .bcard-bg-num {
        font-size: 3.5rem !important;
    }
}

.bcard {
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
    cursor: default;
    will-change: transform;
}

.bcard:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.03);
}

.bcard-span2 {
    grid-column: span 2;
}

.bcard-span3 {
    grid-column: span 3;
}

.bcard-dark {
    background: linear-gradient(145deg, rgba(0, 20, 80, 0.9) 0%, rgba(0, 10, 50, 0.95) 100%);
    border: 1px solid transparent;
    background-clip: padding-box;
    box-shadow: inset 0 0 0 1px rgba(0, 212, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bcard-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 0.0625rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 71, 245, 0.15) 50%, rgba(0, 255, 204, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.bcard-electric {
    background: linear-gradient(135deg, #0050E6 0%, #0038B8 60%, #002299 100%);
    border: 1px solid rgba(0, 212, 255, 0.25);
    box-shadow: 0 8px 40px rgba(0, 71, 245, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bcard-glass {
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.bcard-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 0.0625rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.18) 0%, transparent 50%, rgba(0, 255, 204, 0.12) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.bcard-pale {
    background: rgba(0, 50, 180, 0.14);
    border: 1px solid rgba(0, 212, 255, 0.18);
    box-shadow: 0 4px 24px rgba(0, 71, 245, 0.1);
}

.bcard-white {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.bcard-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 1.25rem;
}

.bcard-eyebrow-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: #00D4FF;
}

.bcard-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
}

.bcard-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
}

.bcard-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.bcard-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.25;
    margin-bottom: 0.625rem;
    letter-spacing: -0.01em;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 901px) {
    .bcard-span3 .bcard-title {
        font-size: 1.375rem;
    }
}

.bcard-desc {
    font-size: 0.875rem;
    line-height: 1.65;
}

.bcard-tag {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 1.25rem;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1.25rem;
}

.bcard-bg-num {
    position: absolute;
    bottom: -0.5rem;
    right: 1rem;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    color: rgba(255, 255, 255, 0.05);
}

.bcard-split {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    background: #050b24 !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;
    height: 100%;
}

.bcard-image-wrap {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.bcard-image-wrap .card-bg-img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: scale(1.02);
    transition: transform 0.12s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform;
}

.bcard-split:hover .bcard-image-wrap .card-bg-img {
    transform: scale(1.1) translateX(var(--px, 0px)) translateY(var(--py, 0px)) !important;
}

.bcard-image-wrap .card-bg-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(to bottom, rgba(0, 10, 40, 0.2) 0%, rgba(0, 10, 40, 0.6) 100%) !important;
}

.bcard-image-wrap .bcard-eyebrow {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(3, 8, 30, 0.65);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bcard-content-flat {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    background: #050b24;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    position: relative;
    z-index: 2;
    height: 100%;
}

.bcard-header-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bcard-header-row>div:last-child {
    min-width: 0;
    flex: 1;
}

.bcard-header-row .bcard-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.bcard-content-flat .bcard-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bcard-content-flat .bcard-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    stroke: #00D4FF;
    fill: none;
}

.bcard-content-flat .bcard-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #FFFFFF !important;
    letter-spacing: -0.01em;
}

.bcard-content-flat .bcard-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #00FFCC !important;
    margin-top: 0.15rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.bcard-content-flat .bcard-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.bcard-more-link {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #00FFCC !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: auto;
    z-index: 5;
    position: relative;
}

.bcard-more-link svg {
    transition: transform 0.3s ease;
}

.bcard-more-link:hover {
    color: #00D4FF !important;
}

.bcard-more-link:hover svg {
    transform: translateX(4px);
}

.bcard-content-flat .bcard-bg-num {
    position: absolute;
    bottom: -0.5rem;
    right: 0.5rem;
    font-family: 'Syne', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02) !important;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 560px) {
    .bcard-image-wrap {
        height: 160px;
    }

    .bcard-content-flat {
        padding: 1.5rem 1.25rem;
    }

    .bcard-content-flat .bcard-bg-num {
        font-size: 4rem;
    }
}

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

#equipo::after {
    content: '';
    position: absolute;
    width: 31.25rem;
    height: 31.25rem;
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

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

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

.equipo-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.equipo-sub {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    color: #38BDF8;
    margin-bottom: 1rem;
}

.equipo-body {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.equipo-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.equipo-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.375rem 1rem;
    border-radius: 1.25rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.equipo-pill:hover {
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.45);
    color: #FFFFFF;
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
    transform: translateY(-1px);
}

.equipo-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.equipo-card {
    background: rgba(255, 255, 255, 0.025);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.equipo-card::before {
    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;
}

.equipo-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

.equipo-card:first-child {
    grid-column: span 2;
    background: var(--blue-900);
    border-color: var(--blue-900);
}

.equipo-card-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
    background: var(--blue-100);
    border: 0.5px solid rgba(0, 71, 245, 0.3);
}

.equipo-card:first-child .equipo-card-icon {
    background: rgba(255, 255, 255, 0.1);
    border: none;
}

.equipo-card-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.equipo-card-icon svg path {
    stroke: var(--blue-400);
}

.equipo-card:first-child .equipo-card-icon svg path {
    stroke: white;
}

.equipo-card-title {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
    color: #FFFFFF;
}

.equipo-card:first-child .equipo-card-title {
    color: white;
}

.equipo-card-body {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
}

.equipo-card:first-child .equipo-card-body {
    color: rgba(255, 255, 255, 0.55);
}

.equipo-marquee-section {
    width: 100%;
    margin-top: 5rem;
    overflow: hidden;
    position: relative;
}

.equipo-marquee-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.12rem, 3.2vw, 1.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.3;
    padding: 0 1.5rem;
}

.equipo-marquee-title .marquee-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #38D9FF 0%, #00FFCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
    letter-spacing: 0.05em;
}

.marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.marquee-container {
    overflow: hidden;
    display: flex;
    width: 100%;
    white-space: nowrap;
    padding: 0.65rem 0;
    position: relative;
    background: rgba(255, 255, 255, 0.012);
    border-top: 1px solid rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid rgba(255, 255, 255, 0.025);
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    gap: 1.5rem;
    min-width: 100%;
    will-change: transform;
}

.marquee-content span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: default;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.marquee-content span::before {
    content: '•';
    color: rgba(255, 255, 255, 0.35);
    font-size: 1.25rem;
    line-height: 1;
    display: inline-block;
}

.marquee-content span:hover {
    color: #FFFFFF;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    transform: scale(1.05);
}

.marquee-container:not(.reverse) .marquee-content {
    animation: marquee-scroll-left 46s linear infinite;
}

.marquee-container.reverse .marquee-content {
    animation: marquee-scroll-right 46s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee-content span {
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    .marquee-content span::before {
        font-size: 1.15rem;
    }

    .marquee-container:not(.reverse) .marquee-content,
    .marquee-container.reverse .marquee-content {
        animation-duration: 34s;
    }
}

@keyframes btn-pulse-breathing {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(0, 71, 245, 0.25), 0 8px 25px rgba(0, 212, 255, 0.2);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 25px rgba(0, 71, 245, 0.45), 0 12px 35px rgba(0, 212, 255, 0.35);
        transform: scale(1.02);
    }
}

@keyframes btn-shine-sweep {
    0% {
        left: -150%;
    }

    15% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.sumate-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.sumate-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sumate-form-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sumate-form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.6rem;
    padding: 0.75rem 1rem;
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.sumate-form-input:focus {
    outline: none;
    border-color: #00D4FF;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.sumate-form-input option {
    background-color: #050b24;
    color: #FFFFFF;
}

.countdown-strip {
    background: linear-gradient(90deg, #0044E0 0%, #002DB8 50%, #0044E0 100%);
    background-size: 200% 100%;
    animation: gradientShift 6s ease-in-out infinite;
    padding: 0.85rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 71, 245, 0.5);
    position: relative;
    overflow: hidden;
}

.countdown-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

.countdown-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    position: relative;
}

.countdown-units {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.countdown-unit {
    text-align: center;
}

.countdown-num {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: white;
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.countdown-unit-lbl {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.card-with-bg,
.card-with-bg .bcard-title,
.card-with-bg .bcard-desc,
.card-with-bg .bcard-num,
.card-with-bg .vision-card-title,
.card-with-bg .vision-card-body,
.card-with-bg .equipo-card-title,
.card-with-bg .equipo-card-body {
    color: #FFFFFF !important;
}

.card-with-bg .bcard-bg-num {
    color: rgba(255, 255, 255, 0.04) !important;
}

.card-with-bg .bcard-tag {
    background: rgba(255, 255, 255, 0.12) !important;
    color: rgba(255, 255, 255, 0.85) !important;
}

.btn-hero-glow {
    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg, #0047F5 0%, #0088FF 50%, #00FFCC 100%) !important;
    color: #FFFFFF !important;
    font-family: 'Syne', sans-serif !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    padding: 1.1rem 2.4rem !important;
    border-radius: 50px !important;
    box-shadow: 0 0 25px rgba(0, 71, 245, 0.4), 0 10px 30px rgba(0, 212, 255, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;

    animation: btn-pulse-breathing 3s infinite ease-in-out !important;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem !important;
}

.btn-hero-glow::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.5) 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;
}

.btn-hero-glow svg {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-hero-glow:hover {
    transform: translateY(-5px) scale(1.06) !important;
    box-shadow: 0 0 40px rgba(0, 71, 245, 0.6), 0 20px 50px rgba(0, 212, 255, 0.5), 0 0 0 4px rgba(0, 212, 255, 0.2) !important;
    background: linear-gradient(135deg, #0056FF 0%, #00A6FF 50%, #00FFCC 100%) !important;
    animation: none !important;
}

.btn-hero-glow:hover svg {
    transform: translateX(5px);
}

.btn-hero-glow:active {
    transform: translateY(-2px) scale(0.97) !important;
    box-shadow: 0 0 20px rgba(0, 71, 245, 0.5), 0 8px 25px rgba(0, 212, 255, 0.4) !important;
    transition: all 0.1s ease !important;
}

@keyframes btn-pulse-breathing {
    0% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(0, 71, 245, 0.4), 0 10px 30px rgba(0, 212, 255, 0.3);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 0 40px rgba(0, 71, 245, 0.6), 0 15px 45px rgba(0, 212, 255, 0.5), 0 0 0 6px rgba(0, 212, 255, 0.15);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(0, 71, 245, 0.4), 0 10px 30px rgba(0, 212, 255, 0.3);
    }
}

@keyframes btn-shine-sweep {
    0% {
        left: -150%;
    }

    30% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.sug-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 18s ease-in-out infinite alternate;
}

.sug-orb1 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 71, 245, 0.18) 0%, rgba(0, 212, 255, 0.06) 50%, transparent 70%);
    top: -200px;
    left: -150px;
    animation-duration: 22s;
}

.sug-orb2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 65%);
    bottom: -150px;
    right: -100px;
    animation-duration: 17s;
    animation-direction: alternate-reverse;
}

.sug-orb3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.09) 0%, transparent 65%);
    top: 50%;
    left: 55%;
    animation-duration: 25s;
}

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

.sug-left {
    position: relative;
    z-index: 2;
}

.sug-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    margin: 1rem 0 1.5rem;
    line-height: 1.15;
}

.sug-title-accent {
    display: block;
    background: linear-gradient(135deg, #00D4FF 0%, #00FFCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sug-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

.sug-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.5rem;
}

.sug-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.875rem;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(0, 212, 255, 0.85);
    letter-spacing: 0.03em;
    transition: all 0.25s ease;
}

.sug-pill:hover {
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.45);
    color: #00D4FF;
    transform: translateY(-2px);
}

.sug-pill svg {
    opacity: 0.75;
}

.sug-quote {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 0;
}

.sug-quote-bar {
    width: 3px;
    min-height: 3rem;
    background: linear-gradient(180deg, #00D4FF 0%, #00FFCC 100%);
    border-radius: 2px;
    flex-shrink: 0;
}

.sug-quote p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

.sug-right {
    position: relative;
    z-index: 2;
}

.sug-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 1.5rem;
    padding: 2.25rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: border-color 0.35s, box-shadow 0.35s;
}

.sug-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow:
        0 0 0 1px rgba(0, 212, 255, 0.1),
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 212, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sug-card-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 50%;
    animation: sugGlowPulse 4s ease-in-out infinite alternate;
}

@keyframes sugGlowPulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.25);
    }
}

.sug-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sug-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0047F5 0%, #00D4FF 100%);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 71, 245, 0.4);
}

.sug-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.2rem;
    letter-spacing: -0.01em;
}

.sug-card-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.sug-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.sug-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sug-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sug-form-group-full {
    grid-column: 1 / -1;
}

.sug-form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
}

.sug-optional-badge {
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 0.1rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sug-required-badge {
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(0, 212, 255, 0.7);
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 2rem;
    padding: 0.1rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sug-form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.65rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.sug-form-input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.sug-form-input:focus {
    outline: none;
    border-color: rgba(0, 212, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1), 0 0 15px rgba(0, 212, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.sug-textarea {
    resize: none;
    line-height: 1.6;
}

.sug-textarea-wrap {
    position: relative;
}

.sug-char-counter {
    position: absolute;
    bottom: 0.6rem;
    right: 0.75rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Outfit', monospace;
    pointer-events: none;
    transition: color 0.25s;
}

.sug-char-counter.warn {
    color: rgba(251, 191, 36, 0.75);
}

.sug-char-counter.limit {
    color: rgba(239, 68, 68, 0.85);
}

.sug-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #0047F5 0%, #0090FF 50%, #00D4FF 100%);
    border: none;
    border-radius: 0.75rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 71, 245, 0.35);
}

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

.sug-submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 71, 245, 0.5), 0 0 30px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, #0056FF 0%, #00A8FF 50%, #00FFCC 100%);
}

.sug-submit-btn:hover::before {
    opacity: 1;
}

.sug-submit-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 6px 16px rgba(0, 71, 245, 0.4);
}

.sug-submit-btn svg {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.sug-submit-btn:hover svg {
    transform: rotate(15deg) scale(1.15);
}

.sug-success-msg {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    color: #34d399;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.sug-success-msg strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

.sug-error-msg {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 0.6rem;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ff6b6b;
}

@media (max-width: 1024px) {
    .sug-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sug-left {
        text-align: center;
    }

    .sug-pills {
        justify-content: center;
    }

    .sug-quote {
        justify-content: center;
        text-align: left;
        max-width: 28rem;
        margin: 0 auto;
    }

    .sug-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
}

@media (max-width: 768px) {

    #sugerencias .section {
        padding: 4.5rem 1.5rem;
    }

    .sug-wrapper {
        gap: 2.5rem;
    }

    .sug-card {
        padding: 1.75rem;
    }
}

@media (max-width: 600px) {
    #sugerencias .section {
        padding: 3.5rem 1rem;
    }

    .sug-form-row {
        grid-template-columns: 1fr;
    }

    .sug-card {
        padding: 1.5rem;
        border-radius: 1.1rem;
    }

    .sug-textarea {
        padding-bottom: 2rem;
    }

    .sug-card-header {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1.1rem;
    }

    .sug-card-icon {
        width: 40px;
        height: 40px;
        border-radius: 0.65rem;
    }

    .sug-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .sug-card-title {
        font-size: 1.05rem;
    }

    .sug-submit-btn {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 380px) {
    #sugerencias .section {
        padding: 3rem 0.85rem;
    }

    .sug-card {
        padding: 1.25rem;
    }

    .sug-title {
        font-size: clamp(1.5rem, 7vw, 1.9rem);
    }

    .sug-optional-badge,
    .sug-required-badge {
        display: none;
    }

    .sug-pills {
        gap: 0.4rem;
    }

    .sug-pill {
        font-size: 0.72rem;
        padding: 0.3rem 0.65rem;
    }
}

.sumate-form-input:-webkit-autofill,
.sumate-form-input:-webkit-autofill:hover,
.sumate-form-input:-webkit-autofill:focus,
.sug-form-input:-webkit-autofill,
.sug-form-input:-webkit-autofill:hover,
.sug-form-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0px 1000px #050b24 inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

.hero-mesh-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.hero-aurora-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.sumate-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.sug-card-header-logo-container {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: auto !important;
    height: 48px !important;
    border-radius: 0 !important;
}

.sug-card-header-logo {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.sumate-lopd-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(0, 212, 255, 0.08);
    border-radius: 0.5rem;
    padding: 0.85rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
    max-height: 110px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 212, 255, 0.25) rgba(255, 255, 255, 0.01);
}

.sumate-lopd-box strong {
    color: rgba(255, 255, 255, 0.7);
}

.sumate-lopd-box a {
    color: rgba(0, 212, 255, 0.75);
    text-decoration: none;
}

.sumate-lopd-box a:hover {
    color: #00FFCC;
    text-decoration: underline;
}

.sumate-lopd-box::-webkit-scrollbar {
    width: 4px;
}

.sumate-lopd-box::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.sumate-lopd-box::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.2);
    border-radius: 10px;
}

.sumate-lopd-box::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.4);
}

.lopd-title {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
    text-transform: uppercase;
}
