@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Exo", sans-serif;
}

body {
    background-color: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
}

.header-transparent {
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    width: 100%;
    position: relative;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 140px;
    display: block;
}

.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar ul {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0;
}

.navbar ul>li>a {
    color: #e0e0e0;
    font-size: 16px;
    transition: color 0.3s;
    padding: 10px 0;
    position: relative;
}

.navbar ul>li>a:hover,
.navbar ul>li>a.active-link {
    color: white;
    font-weight: 600;
}

.btn-header {
    display: inline-block;
    flex-shrink: 0;
    background-color: #00ADEE;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-header:hover {
    background-color: #008cbf;
}

#menu {
    display: none;
}

.menu-label {
    display: none;
}

.dropdown-item {
    position: relative;
}

.dropdown-trigger i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-top: 3px solid #00ADEE;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    text-align: left;
}

.dropdown-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.menu-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.tab-link {
    font-size: 14px;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    text-transform: uppercase;
    padding-bottom: 5px;
    position: relative;
}

.tab-link:hover,
.tab-link.active {
    color: #ffffff;
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
}

.menu-content {
    display: none;
}

.menu-content.active {
    display: block;
    animation: fadeIn 0.3s;
}

.menu-content ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.menu-content li {
    width: 100%;
}

.menu-content li a {
    color: #ffffff;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    transition: all 0.2s;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.menu-content li a:hover {
    color: #00ADEE;
    padding-left: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.support-hero {
    background: linear-gradient(rgba(11, 28, 60, 0.85), rgba(11, 28, 60, 0.9)), url('img/heroSoporte.png');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.text-cyan {
    color: #00ADEE;
}

.hero-content p {
    font-size: 20px;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.btn-cyan-hero {
    margin-top: 20px;
    display: inline-block;
    background-color: #00ADEE;
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 10px 25px rgba(0, 173, 238, 0.4);
}

.btn-cyan-hero:hover {
    background-color: #008cbf;
    transform: translateY(-3px);
}

.stats-section {
    background-color: #ffffff;
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item h2 {
    font-size: 42px;
    color: #0b1c3c;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.steps-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: #666;
    font-size: 16px;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    width: 280px;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
}

.card-blue {
    background-color: #EBF7FC;
}

.card-white {
    background-color: #ffffff;
    border: 1px solid #eee;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #0b1c3c;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    position: relative;
}

.step-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: #00ADEE;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid white;
}

.step-card h3 {
    font-size: 18px;
    color: #333;
    font-weight: 700;
}

.features-section {
    background: linear-gradient(rgba(11, 28, 60, 0.9), rgba(11, 28, 60, 0.9)), url('img/gridSoporte.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-card {
    background-color: #ffffff;
    width: 500px;
    padding: 50px;
    border-radius: 12px;
    position: relative;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #0b1c3c;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 700;
}

.check-list li {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #666;
    margin-bottom: 12px;
}

.check-list li i {
    color: #333;
    font-size: 16px;
    margin-right: 12px;
}

.helpdesk-contact-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.helpdesk-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.helpdesk-image {
    flex: 1;
}

.helpdesk-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    display: block;
}

.helpdesk-info {
    flex: 1;
    max-width: 550px;
}

.helpdesk-info h2 {
    font-size: 42px;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

.subtitle {
    font-weight: 700;
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
}

.description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.contact-channels {
    margin-bottom: 30px;
}

.channel-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.channel-item i {
    font-size: 24px;
    color: #00ADEE;
}

.channel-item span {
    font-size: 24px;
    font-weight: 700;
    color: #00ADEE;
}

.exclusive-note {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.exclusive-note strong {
    display: block;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
}

.exclusive-note p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    text-align: justify;
}

.footer {
    background-color: #060b14;
    padding: 80px 0 30px 0;
    color: #ffffff;
    font-size: 14px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-left {
    flex: 1;
    max-width: 500px;
}

.footer-logo img {
    width: 140px;
    margin-bottom: 20px;
    display: block;
}

.footer-desc {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 15px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    padding: 0;
}

.footer-nav li a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-nav li a:hover {
    color: #00ADEE;
}

.footer-right {
    flex: 1;
    max-width: 500px;
}

.footer-right h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-right p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    color: #cccccc;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-info-list li i {
    color: #00ADEE;
    font-size: 16px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #1f2a40;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #7a8ba6;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: #00ADEE;
    transform: translateY(-2px);
}


.hidden,
.hidden-left,
.hidden-right {
    opacity: 0;
    transition: all 1s ease-out;
}

.hidden {
    transform: translateY(30px);
}

.hidden-left {
    transform: translateX(-30px);
}

.hidden-right {
    transform: translateX(30px);
}

.show {
    opacity: 1;
    transform: translate(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* MEDIA QUERIES (MÓVIL) */
@media (max-width: 992px) {
    .menu {
        padding: 20px;
        justify-content: space-between;
    }

    .menu-label {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
    }

    .menu-icono {
        width: 30px;
        filter: invert(100%);
    }

    .navbar {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        padding: 20px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    #menu:checked~.navbar {
        display: block !important;
    }

    .navbar ul {
        flex-direction: column;
        gap: 20px;
    }

    .navbar ul>li>a {
        color: #ffffff;
        font-size: 18px;
    }

    .btn-header {
        display: inline-block !important;
    }

    .mega-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        box-shadow: none;
        margin-top: 15px;
        background-color: #2a2a2a;
        border-top: none;
    }

    .dropdown-item:hover .mega-menu {
        display: block;
    }

    .menu-tabs {
        justify-content: center;
    }

    .support-hero {
        height: auto;
        padding: 150px 0 100px 0;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        max-width: 100%;
    }

    .footer-logo img {
        margin: 0 auto 20px auto;
    }

    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}