* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f5f7fb;
    color: #0b0b0b;
}

/* ===== HEADER ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 35px;
    background: linear-gradient(90deg, #1234ff, #0b2bd6);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.logo {
    width: 85px;
}

.logo1 {
    width: 300px;
}

.logointel {
    width: 150px;
}

.logoryzen {
    width: 150px;
}

.logonvidia {
    width: 150px;
}

/* ===== MENU ===== */
/* ===== MENU ===== */
.menu {
    display: flex;
    gap: 14px;
}

.menu a {
    background: #ffffff;
    color: #1234ff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.menu a:hover {
    background: #25D366;
    color: #fff;
    transform: scale(1.07);
}

/* Botón activo */
.menu a.active {
    background: #0b2bd6;
    color: #fff;
}



/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(120deg, #f8f8f8, #f68c8c);
    color: #0a0a0a;
}

/* ===== SECTIONS ===== */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section.light {
    background: #fff;
}

/* ===== BRANDS ===== */
.brands {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.brands img {
    width: 120px;
    cursor: pointer;
    transition: .3s;
}

.brands img:hover {
    transform: scale(1.1);
}

/* ===== BRAND SECTIONS ===== */
.brand-section {
    display: none;
    padding: 60px 20px;
    background: #fff;
}


/* ===== CAROUSEL ===== */
.carousel {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    max-width: 100%;
}



.product {
    width: 300px;
    background: white;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
    transition: transform .3s ease, box-shadow .3s ease;
}

.product img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    margin: 8px 0 12px;
}



.product:hover {
    transform: scale(1.08);
}


.price {
    display: block;
    margin-top: 12px;
    font-weight: bold;
    font-size: 18px;
    color: #1bcf5d;
}


/* ===== CONTACT ===== */
.contact-info {
    margin-bottom: 20px;
}

.contact-info a {
    color: #25D366;
    text-decoration: none;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons img {
    width: 40px;
    transition: .3s;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #fff;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {
    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .brands img {
        width: 90px;
    }
}

/* ===== PRODUCTOS ===== */
.product {
    background: #fff;
    border-radius: 18px;
    padding: 22px 18px 26px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
    transition: .3s;
}


.product img {
    width: 100%;
    max-width: 280px;
    margin: 8px 0 16px;
    transition: transform .3s ease;
    cursor: pointer;
}

.product img:hover {
    transform: scale(1.08);
}


.Nombre {
    display: block;
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 15px;
}



.price {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #00c853;
}



/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-content img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
}

.btn-wsp {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #00ff3c;
    color: #000;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.WhatsApp {
    width: 20px;
}

#contactos {
    text-align: center;
    background: #f5f7fa;
    padding: 60px 20px;
}

.contact-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.info-line.column {
    flex-direction: column;
    align-items: center;
}

.subtext {
    font-size: 14px;
    color: #555;
}

.info-icon {
    width: 22px;
    height: 22px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons img {
    width: 34px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.15);
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    animation: pulse 2s infinite;
    cursor: pointer;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Efecto hover */
.whatsapp-float:hover {
    animation: none;
    transform: scale(1.15);
}

/* Tooltip */
.wsp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .wsp-tooltip {
    opacity: 1;
}

/* Animación pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    justify-items: center;
}

.brand-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    border: 2px solid #eaeaea;
    transition: all 0.35s ease;
    cursor: pointer;
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: #1234ff;
    box-shadow: 0 18px 35px rgba(0, 0, 0, .15);
}


.brand-card img {
    max-width: 180px;
    max-height: 130px;
    object-fit: contain;
    margin-bottom: 18px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
    transition: transform .3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

.logo-main {
    max-width: 160px;
    margin-bottom: 10px;
}

.apps-img {
    max-width: 100%;
    margin: 15px 0;
}

.btn-consultar {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-consultar:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 18px rgba(37, 211, 102, .4);
}


.brand-section {
    display: none;
    margin-top: 40px;
    animation: fadeDown 0.4s ease;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-card {
    cursor: pointer;
}

.service-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 15px;
}

.brand-card.active .service-dropdown {
    max-height: 2000px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
}

.product-card {
    text-align: center;
}

.btn-consultar {
    display: inline-block;
    margin-top: 10px;
}

.product-card h3 {
    margin-bottom: 14px;
    margin-top: 6px;
    font-size: 16px;
    font-weight: 600;
}

.product-card img {
    margin: 12px 0 16px;
}


.brand-card h3 {
    font-size: 19px;
    font-weight: 600;
    color: #111;
}

.brand-section h2 {
    margin-top: 60px;
    margin-bottom: 20px;
    text-align: center;
}


.brand-card::after {
    content: "Ver modelos";
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.brand-section {
    padding-bottom: 40px;
}

.logointel {
    display: block;
    margin: 10px auto 30px;
    max-height: 70px;
}

.logoryzen {
    display: block;
    margin: 10px auto 30px;
    max-height: 70px;
}

.logonvidia {
    display: block;
    margin: 10px auto 30px;
    max-height: 70px;
}

.logoepson {
    display: block;
    margin: 10px auto 30px;
    max-height: 70px;
}

#gamer .product {
    width: 340px;
}

.product,
.product-card {
    border: 2px solid transparent;
}

.product:hover,
.product-card:hover {
    border-color: #080808;
}

.product img,
.product-card img {
    width: 100%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    margin: 15px auto 20px;
}

.service-card img {
    max-width: 200px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
