/* VARIABLES */
:root {
    --brand-cyan: #01c9c3;
    --brand-blue: #05447a;
    --bg-deep: #02060e;
    --bg-surface: #061121;
    --text-white: #ffffff;
    --text-muted: #cbd5e1;
    --glow-cyan: rgba(1, 201, 195, 0.4);
    --gradient-brand: linear-gradient(
        135deg,
        var(--brand-cyan) 0%,
        var(--brand-blue) 100%
    );
    --glass-border: rgba(1, 201, 195, 0.15);
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-white);
    overflow-x: hidden;
}

.text-muted {
    color: var(--text-muted) !important;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-white);
}

.text-cyan {
    color: var(--brand-cyan) !important;
}

.text-gradient {
    background: linear-gradient(to right, #ffffff 30%, var(--brand-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* NAVBAR SECTION */

.navbar-brand {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 60px;
    background: radial-gradient(
        ellipse at center,
        rgba(1, 201, 195, 0.5) 0%,
        rgba(5, 68, 122, 0.3) 40%,
        transparent 70%
    );
    filter: blur(25px);
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
    transition: all 0.5s ease;
}

.navbar-brand:hover::before {
    opacity: 1;
    background: radial-gradient(
        ellipse at center,
        rgba(1, 201, 195, 0.8) 0%,
        transparent 70%
    );
    filter: blur(30px);
    width: 140px;
}

.navbar-minimal {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(2, 6, 14, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 0;
}

/* TECH GRID SECTION */

.tech-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-image:
        linear-gradient(rgba(1, 201, 195, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 201, 195, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at top, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(
            ellipse at top,
            black 20%,
            transparent 80%
    );
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--brand-blue);
    top: -200px;
    left: -100px;
    opacity: 0.5;
}

.glow-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--brand-cyan);
    top: 20%;
    right: -150px;
    opacity: 0.15;
}

/* BUTTONS */

.navbar-floating {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(6, 17, 33, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 12px 30px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--text-white) !important;
    text-shadow: 0 0 10px var(--glow-cyan);
}

.btn-infolynk {
    background: var(--brand-cyan);
    color: var(--bg-deep) !important;
    border: none;
    padding: 18px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 0 20px var(--glow-cyan);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn-infolynk:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(1, 201, 195, 0.6);
    background: #02e0d9;
}

.btn-infolynk-outline {
    background: rgba(1, 201, 195, 0.05);
    border: 1px solid var(--brand-cyan);
    color: var(--brand-cyan) !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-infolynk-outline:hover {
    background: var(--brand-cyan);
    color: var(--bg-deep) !important;
    box-shadow: 0 0 20px var(--glow-cyan);
}

/* HERO SECTION */

.hero-section {
    padding: 200px 0 120px;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(1, 201, 195, 0.1);
    border: 1px solid rgba(1, 201, 195, 0.3);
    color: var(--brand-cyan);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(1, 201, 195, 0.1);
}

/* ABOUT SECTION */

.about-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(5, 68, 122, 0.05) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--brand-cyan);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* TESTIMONIALS SECTION */

.testimonials-section {
    padding: 120px 0;
    position: relative;
}

.testimonial-card-premium {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    position: relative;
    transition: 0.3s;
}

.testimonial-card-premium:hover {
    box-shadow: 0 10px 40px rgba(1, 201, 195, 0.1);
    border-color: rgba(1, 201, 195, 0.3);
}

/* BENTO SECTION */

.bento-section {
    padding: 120px 0;
    position: relative;
}

.bento-card {
    background: rgba(6, 17, 33, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.bento-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(1, 201, 195, 0.06),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    border-color: rgba(1, 201, 195, 0.3);
    transform: translateY(-5px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(1, 201, 195, 0.05);
}

/* SERVICES SECTION */


.service-icon {
    font-size: 2.2rem;
    color: var(--brand-cyan);
    margin-bottom: 24px;
    display: inline-flex;
    width: 70px;
    height: 70px;
    background: rgba(1, 201, 195, 0.1);
    border: 1px solid rgba(1, 201, 195, 0.2);
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(1, 201, 195, 0.05);
}

.methodology-block {
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 16px;
    padding: 30px;
    font-family: monospace;
    color: #c9d1d9;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    position: relative;
}

.code-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 1px solid #30363d;
    padding-bottom: 15px;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-keyword {
    color: #ff7b72;
}

.code-string {
    color: #a5d6ff;
}

.code-function {
    color: #d2a8ff;
}

.code-comment {
    color: #8b949e;
}

.tech-stack-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 68, 122, 0.1);
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    display: flex;
}

.tech-stack-track {
    display: inline-flex;
    gap: 40px;
    animation: scroll-left 30s linear infinite;
    padding-right: 40px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tech-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* FAQ SECTION */

.faq-cyber-section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.faq-cyber-item {
    background: rgba(6, 17, 33, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.faq-cyber-item:hover {
    border-color: rgba(1, 201, 195, 0.3);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(1, 201, 195, 0.05);
    transform: translateX(5px);
}

.faq-cyber-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--brand-cyan);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    box-shadow: 0 0 15px var(--brand-cyan);
}

.faq-cyber-item:has(.accordion-button:not(.collapsed))::before {
    transform: scaleY(1);
}

.accordion-cyber .accordion-button {
    background: transparent !important;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.15rem;
    padding: 28px 30px;
    box-shadow: none !important;
    display: flex;
      align-items: center;
    gap: 24px;
}

.accordion-cyber .accordion-button::after {
    display: none;
}

.faq-number {
    font-family: monospace;
    color: rgba(1, 201, 195, 0.5);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.faq-icon-custom {
    margin-left: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-cyan);
    font-size: 1.2rem;
      transition: all 0.4s ease;
    flex-shrink: 0;
}

.accordion-cyber .accordion-button:not(.collapsed) {
    color: var(--brand-cyan);
}

.accordion-cyber .accordion-button:not(.collapsed) .faq-icon-custom {
    transform: rotate(45deg);
    background: var(--brand-cyan);
    color: var(--bg-deep);
    box-shadow: 0 0 15px var(--glow-cyan);
      border-color: var(--brand-cyan);
}

.accordion-cyber .accordion-body {
    padding: 0 30px 30px 80px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* CONTACT SECTION */

.quote-icon {
    font-size: 3rem;
    color: rgba(1, 201, 195, 0.1);
    position: absolute;
    top: 20px;
    right: 30px;
}

.contact-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(6, 17, 33, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.form-control-infolynk {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    padding: 16px 20px;
    transition: 0.3s;
}

.form-control-infolynk:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-cyan);
    box-shadow: 0 0 15px rgba(1, 201, 195, 0.2);
    color: var(--text-white);
}

.form-control-infolynk::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

select.form-control-infolynk option {
    background: var(--bg-deep);
    color: var(--text-white);
}

.toast-cyber {
    background: rgba(6, 17, 33, 0.85);
    backdrop-filter: blur(16px);
    border-radius: 8px;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    font-size: 0.95rem;
}

.toast-cyber.border-success-cyber {
    border-left: 4px solid var(--brand-cyan) !important;
}

.toast-cyber.border-error-cyber {
    border-left: 4px solid #ff5f56 !important;
}

.toast-cyber .toast-body i {
    font-size: 1.3rem;
}

.text-success-cyber { color: var(--brand-cyan) !important; }
.text-error-cyber { color: #ff5f56 !important; }

/* CTA FINAL SECTION */

.cta-box {
    background: linear-gradient(135deg, var(--bg-surface) 0%, #030a14 100%);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(1, 201, 195, 0.15) 0%,
        transparent 60%
    );
    pointer-events: none;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
    background: var(--bg-deep);
}

.portfolio-logo {
    width: 90px;
    object-fit: contain;
    filter: grayscale(100%) brightness(500%) opacity(50%);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
}

.portfolio-logo:hover {
    filter: grayscale(0%) brightness(100%) opacity(100%);
    transform: translateY(-3px) scale(1.05);
}

/* COOKIE BANNER */

.cookie-banner-cyber {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 850px;
    background: rgba(6, 17, 33, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(1, 201, 195, 0.2);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(1, 201, 195, 0.05);
    padding: 24px 30px;
    border-radius: 24px;
    z-index: 100000;
    display: flex;
      align-items: center;
    justify-content: space-between;
    gap: 30px;
    animation: slideUpCyber 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-cyber-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-cyber-icon {
    width: 48px;
    height: 48px;
    background: rgba(1, 201, 195, 0.1);
    border: 1px solid rgba(1, 201, 195, 0.3);
    color: var(--brand-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: inset 0 0 10px rgba(1, 201, 195, 0.1);
}

.cookie-cyber-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-cyber-text a {
    color: var(--brand-cyan);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.cookie-cyber-text a:hover {
    text-shadow: 0 0 10px var(--glow-cyan);
    text-decoration: underline;
}

.cookie-cyber-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-accept-cyber {
    background: var(--brand-cyan);
    color: var(--bg-deep);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    box-shadow: 0 0 15px rgba(1, 201, 195, 0.3);
}

.btn-cookie-accept-cyber:hover {
    background: #02e0d9;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(1, 201, 195, 0.6);
}

.btn-cookie-settings-cyber {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-cookie-settings-cyber:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.cookie-banner-cyber.hide {
    transform: translate(-50%, 150px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-modal-cyber .modal-content {
    background: rgba(6, 17, 33, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(1, 201, 195, 0.2);
    border-radius: 24px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.8),
        inset 0 0 20px rgba(1, 201, 195, 0.05);
    color: var(--text-white);
}

.cookie-modal-cyber .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 30px;
}

.cookie-modal-cyber .modal-title {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-white);
}

.cookie-modal-cyber .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.5;
    transition: 0.3s;
}

.cookie-modal-cyber .btn-close:hover {
    opacity: 1;
}

.cookie-modal-cyber .modal-body {
    padding: 30px;
}

.cookie-modal-cyber .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 30px;
    justify-content: space-between;
}

.cookie-option-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    transition: 0.3s;
}

.cookie-option-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(1, 201, 195, 0.2);
}

.cookie-option-info h6 {
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-white);
}

.cookie-option-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.cyber-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.cyber-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cyber-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    border-radius: 34px;
}

.cyber-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: var(--text-white);
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 50%;
}

.cyber-switch input:checked + .cyber-slider {
    background-color: var(--brand-cyan);
    box-shadow: 0 0 15px rgba(1, 201, 195, 0.4);
}

.cyber-switch input:checked + .cyber-slider:before {
    transform: translateX(22px);
    background-color: var(--bg-deep);
}

.cyber-switch input:disabled + .cyber-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.text-cyan-small {
    color: var(--brand-cyan);
    font-size: 0.8rem;
    font-weight: 700;
}

/* WHATSAPP BUTTON */

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--brand-cyan);
    color: var(--bg-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px var(--glow-cyan);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
    color: var(--bg-deep);
    animation: pulse-cyan 1.5s infinite;
}

@keyframes pulse-cyan {
    0% {
        box-shadow: 0 0 0 0 rgba(1, 201, 195, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(1, 201, 195, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(1, 201, 195, 0);
    }
}

/* LEGAL SECTION */
.legal-container {
    max-width: 800px; 
    margin: 140px auto; 
    padding: 0 20px; 
}
        
.legal-title { 
    color: var(--text-white); 
    font-weight: 800; 
    font-size: 2.5rem; 
    margin-bottom: 10px; 
}
        
.legal-content h2 { 
    color: var(--brand-cyan); 
    font-size: 1.5rem; 
    font-weight: 700; 
    margin-top: 50px; 
    margin-bottom: 20px;
}

.legal-content p, .legal-content li { 
    color: var(--text-muted); 
    line-height: 1.8; 
    margin-bottom: 15px; 
    font-size: 1.05rem; 
}
        
.glass-box { 
    background: rgba(1, 201, 195, 0.05); 
    border: 1px solid rgba(1, 201, 195, 0.2); 
    padding: 25px; 
    border-radius: 16px;
    margin: 30px 0; 
}

.btn-back { 
    color: var(--brand-cyan); 
    border: 1px solid var(--brand-cyan); 
    padding: 8px 24px; 
    border-radius: 50px; 
    text-decoration: none; 
    transition: 0.3s; 
}

.btn-back:hover { 
    background: var(--brand-cyan); 
    color: var(--bg-deep); 
}

/* RESPONSIVO */

@media (max-width: 768px) {

    .cookie-banner-cyber {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        bottom: 20px;
        width: 95%;
    }

    .cookie-cyber-actions {
        width: 100%;
        margin-top: 15px;
    }

    .btn-cookie-accept-cyber,
    .btn-cookie-settings-cyber {
        flex: 1;
        text-align: center;
    }

    .cookie-cyber-icon {
        display: none;
    }
    
}

@keyframes slideUpCyber {
    
    from {
        transform: translate(-50%, 150px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }

}

@media (max-width: 768px) {
    
    .accordion-cyber .accordion-button {
        padding: 20px;
        font-size: 1rem;
        gap: 15px;
    }
    
    .accordion-cyber .accordion-body {
        padding: 0 20px 20px 20px;
    }
    
    .faq-number {
        display: none;
    }

}

@media (max-width: 991px) {
    
    .navbar-floating {
        padding: 12px 20px;
        border-radius: 20px;
    }

    .navbar-floating .navbar-collapse {
        margin-top: 15px;
        padding-bottom: 10px;
        max-height: 65vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .navbar-floating .navbar-nav .nav-item {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .navbar-floating .d-flex {
        justify-content: center;
    }

    .hero-section {
        padding-top: 160px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

}