
/* Estilos generales mejorados */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #003366;
    --secondary: #2c8ee9;
    --accent: #25D366;
    --text: #222;
    --text-light: #444;
    --background: #fff;
    --background-alt: #f5f5f5;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/*wsp*/

        /* Estilos del botón de WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            z-index: 100000;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
            background-color: #128C7E;
        }

        .whatsapp-float i {
            color: white;
            font-size: 32px;
        }

        /* Tooltip flotante */
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            background: #333;
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            right: -5px;
            top: 50%;
            transform: translateY(-50%);
            border-left: 5px solid #333;
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        /* Animación de pulso */
        @keyframes pulse {
            0% {
                box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
            }
            100% {
                box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-float i {
                font-size: 28px;
            }

            .whatsapp-tooltip {
                display: none; /* Ocultar tooltip en móviles */
            }
        }

        @media (max-width: 480px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 15px;
                right: 15px;
            }

            .whatsapp-float i {
                font-size: 24px;
            }
        }

       

/*wsp*/





/* Barra de redes sociales */

.nav{
    position:sticky;
    top: 0;
    z-index: 1000;
}
.nav__redes {
    background-color: #222;
    padding: 10px 0;
    text-align: center;
    
}

.nav__redes a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    margin: 0 0.25rem;
    transition: var(--transition);
}

.nav__redes a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Colores específicos para cada red social */
.nav__redes a:nth-child(1) { background-color: #3b5998; } /* Facebook */
.nav__redes a:nth-child(2) { background-color: #ff0000; } /* YouTube */
.nav__redes a:nth-child(3) { background-color: #25D366; } /* WhatsApp */
.nav__redes a:nth-child(4) { background-color: #E1306C; } /* Instagram */
.nav__redes a:nth-child(5) { background-color: #1DA1F2; } /* Twitter */
.nav__redes a:nth-child(6) { background-color: #0077B5; } /* LinkedIn */

/* Barra de navegación principal */
.nav__navbar {
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    border: none;
    box-shadow: 0 0px 10px 2px var(--primary);
}

.nav__logo img {
    height: 70px;
}

.nav__btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    display: block;
    z-index: 1000;
}

.nav__list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    display: none;
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.nav__list.active {
    display: flex;
}

.nav__link {
    color: white;
    padding: 10px 0;
    display: block;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__link:hover {
    opacity: 0.8;
    transform: translateX(5px);
}

.nav__contacto {
    display: none;
}


/*modificaciones por deep*/

#menuBtn {
    transition: transform 0.3s ease, opacity 0.2s ease;
}

#navList a {
    transition: opacity 0.2s ease;
}

#navList.active {
    display: flex !important; 
}

/*fin de la nueva modificacion*/

/* Barra de contrato */
.nav__contrato {
    background-color: #fffb00;
    color: var(--text);
    text-align: center;
    padding: 15px;
}

.nav__contrato h3 {
    margin-bottom: 10px;
}

.nav__contrato a {
    color: #E1306C;
    font-weight: bold;
}

.nav__contrato a:hover{
    text-decoration: underline;
}

/* Header principal */
.header {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    margin-top: -40px;
}

.header__container {
    order: 2;
    text-align: center;
}

.header__title {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.header__subtitle {
    color: var(--text);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.header__h3 {
    color: var(--text-light);
    margin-bottom: 30px;
}

.header__linkcontainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.linkcontainer__a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    border-radius: 8px;
    background-color: var(--background-alt);
    transition: var(--transition);
    font-size: 0.8em;
}

.linkcontainer__a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.icon__container {
    margin-bottom: 10px;
    
}

.icon__container i {
    color: var(--primary);
}

.header__localizarreparacion {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    margin-top: 20px;
    transition: var(--transition);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.header__localizarreparacion:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.header__imagen {
    order: 1;
    margin-bottom: 30px;
}

/* Sección Tienda */
.tienda {
    padding: 50px 15px;
    text-align: center;
}

.tienda__title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.tienda__title span {
    color: var(--primary);
}

.tienda__subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.tienda__cardscontainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tienda__cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    border-radius: 8px;
    background-color: var(--background-alt);
    transition: var(--transition);
}

.tienda__cards:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tienda__cards-img {
    height: 120px;
    margin-bottom: 15px;
    object-fit: contain;
}

/* Sección Software */
.software {
    padding: 50px 15px;
}

.software__container {
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
}

.software__img {
    order: 1;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.software__hgroup {
    order: 2;
}

.software__hgroup h1 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.software__hgroup h2 {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.software__hgroup h3 {
    color: var(--text-light);
    font-size: 1rem;
}

.software__img--dropshadow {
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

/* Sección Reparación */
.reparacion {
    padding: 50px 15px;
    text-align: center;
}

.reparacion__title {
    font-size: 2rem;
    margin-bottom: 40px;
}

.reparacion__title span {
    color: var(--primary);
}

.reparacion__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.reparacion__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    border-radius: 8px;
    background-color: var(--background-alt);
    transition: var(--transition);
}

.reparacion__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.reparacion__img {
    height: 120px;
    margin-bottom: 15px;
    object-fit: contain;
}

.reparacion__card-title {
    color: var(--text);
    font-size: 1.1rem;
}


/*Seccion de Carrusel*/

/*carrusel*/


.reparacion__carrusel{
    display: flex;
    flex-direction: column;
    place-items: center;
    background:linear-gradient(-80deg,var(--secondary),var(--primary));
    min-height: 100vh;
}


.repair__carrousel {
  width: 90%;
  padding: 2em;
  transition: all 0.4s ease;
  border-radius: 1em;
  overflow: hidden;
  
}

.repair__container {
  width: 400%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-items: center;
  transition: all 0.4s ease;
  padding: 2em;
  transition: all 0.5s ease;
  transform: translateX(0%);
}

/*tarjetas de reparacion*/
.repair__card {
  width: calc( 100% / 4 - 2em);
  transition: all 0.4s ease;
}

.card__container{
  margin: 0 auto;
  background-color: var(--background-alt);
  width: fit-content;
  padding: 20px 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  place-items: center;
  gap: 20px;
  box-shadow: 0 0 40px 2px var(--text-light);
}

.repair__card .img{
    height: 300px; 
  width: 300px;
  min-width: 200px;
}

.repair__precio-info{
  display: flex;
  justify-content: space-between;
  width: 90%;
  place-items: center;
}

.repair__precio-info span{
  color: var(--primary);
  font-weight: 700;
}

.repair__precio-info a{
  text-decoration: none;
  background: var(--primary);
  border-radius: 20px;
  color: #ececec;
  padding: 8px 12px;
  transition: all .1s ease-in;
}
.repair__precio-info a:hover{
  transform: scale(1.05);
  background-color: var(--accent);
}


.puntos {
  width: 100%;
  margin: 1em 0 0;
  padding: 0.4em;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.punto {
  width: 1em;
  height: 1em;
  margin: 1em 1em 0;
  color: var(--negro);
  transition: all 0.4s ease;
  border-radius: 1em;
  background-color: var(--text-light);
}

.punto.activo {
  background-color: var(--accent);
} 

.title--color{
    color: var(--background-alt);
    margin-top: 100px;
    
}


/*resposive*/

/* Media Queries para Responsive - Una sola tarjeta siempre */

/* Tablets (1024px o menos) */
@media (max-width: 1024px) {
    .repair__card {
        width: calc(100% - 2em);
    }
    
   
    .repair__card .img {
        height: 280px;
        width: 280px;
    }
    
    .title--color {
        font-size: 1.8rem;
    }
}

/* Tablets pequeñas (768px o menos) */
@media (max-width: 768px) {
    .repair__card {
        width: calc(100% - 1.5em);
    }
    
    .repair__container {
        padding: 1.5em;
    }
    
    .repair__carrousel {
        padding: 1.5em;
    }
    
    .repair__card .img {
        height: 250px;
        width: 250px;
    }
    
    .title--color {
        font-size: 1.6rem;
        padding: 15px;
    }
    
    .card__container {
        padding: 15px 8px;
        gap: 15px;
    }
}

/* Móviles (480px o menos) */
@media (max-width: 480px) {
    .repair__card {
        width: calc(100% - 1em);
    }
    
    .repair__container {
        padding: 1em;
    }
    
    .repair__carrousel {
        padding: 1em;
    }
    
    .repair__card .img {
        height: 220px;
        width: 220px;
    }
    
    .title--color {
        font-size: 1.4rem;
        padding: 10px;
    }
    
    .card__container {
        padding: 12px 6px;
        gap: 12px;
    }
    
    .repair__precio-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .punto {
        width: 0.8em;
        height: 0.8em;
        margin: 0.8em 0.8em 0;
    }
}

/* Pantallas muy pequeñas (360px o menos) */
@media (max-width: 360px) {
    .repair__card .img {
        height: 200px;
        width: 200px;
    }
    
    .title--color {
        font-size: 1.3rem;
    }
    
    .card__container {
        padding: 10px 5px;
        gap: 10px;
    }
    
    .repair__precio-info {
        flex-direction: column;
        gap: 8px;
    }
}

/*Fin de Carrusel*/


/*Quienes Somos*/


        /* Sección Quiénes Somos */
        .contact, .about h2{
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .contact, .about  h2 span {
            color: var(--primary);
        }

        .contact, .about   h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .contact, .about  p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about {
            
            border-radius: 10px;
            padding: 60px 30px;
            margin: 40px 0;
        }

        .about__container {
            display: flex;
            gap: 40px;
        }

        .about__values {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            margin-top: 30px;
        }

        .value__card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .value__card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .value__icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .value__title {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--primary);
        }


        /*Equipo*/
        .about__team {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .team__member {
            align-self: center;
            text-align: center;
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        }

        .team__img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 4px solid var(--primary);
        }

        .team__name {
            font-size: 1.4rem;
            margin-bottom: 5px;
            color: var(--primary);
        }

        .team__role {
            color: var(--text-light);
            margin-bottom: 15px;
            font-style: italic;
        }

/* Sección Encuentranos */
.findstore {
    display: flex;
    flex-direction: column;
    background: linear-gradient(90deg, #d0ebfc, transparent);
    border-radius: 8px;
    margin: 50px 15px;
    overflow: hidden;
}

.findstore__container {
    padding: 30px 20px;
    text-align: center;
}

.findstore__title {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.findstore__subtitle {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.findstore__link {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.findstore__link:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.formulario {
    background-color: var(--primary);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.formulario__title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.formulario__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form__input {
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.form__submit {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
}

.form__submit:hover {
    background-color: #E1306C;
    transform: translateY(-2px);
}


/*Mensaje AL Formulario*/

/* Estilos para mensajes de alerta */
.mensaje-alerta {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    z-index: 10000;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.mensaje-alerta.exito {
    background: linear-gradient(135deg, #e8f5e8, #d4edda);
    border-color: var(--accent);
    color: #155724;
}

.mensaje-alerta.error {
    background: linear-gradient(135deg, #fde8e8, #f8d7da);
    border-color: #dc3545;
    color: #721c24;
}

.mensaje-alerta.carga {
    background: linear-gradient(135deg, #e8f4f8, #d1ecf1);
    border-color: var(--secondary);
    color: #0c5460;
}

.mensaje-alerta.info {
    background: linear-gradient(135deg, #e8f0fe, #d6e4ff);
    border-color: var(--primary);
    color: var(--primary);
}

/* Iconos para cada tipo de mensaje */
.mensaje-alerta::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
}

.mensaje-alerta.exito::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23155724'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

.mensaje-alerta.error::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23721c24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z'/%3E%3C/svg%3E");
}

.mensaje-alerta.carga::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230c5460'%3E%3Cpath d='M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z'/%3E%3C/svg%3E");
    animation: spin 1s linear infinite;
}

.mensaje-alerta.info::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23003366'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
}

/* Animaciones */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mensaje-alerta.cerrando {
    animation: slideOut 0.3s ease-in forwards;
}

/* Botón de cerrar */
.mensaje-alerta .cerrar {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    color: inherit;
}

.mensaje-alerta .cerrar:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .mensaje-alerta {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/*FIn Formulario*/


/* Sección Por qué elegirnos */
.porque {
    padding: 50px 15px;
    text-align: center;
}

.porque__h2 {
    color: #001144;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.porque__h2 span {
    color: var(--primary);
}

.porque__contenedor-tarjetas {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.porque__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 6px;
    min-width: 300px;
    background:linear-gradient(-180deg,var(--background-alt),transparent) ;
    box-shadow: 0 0 2px #999;
    margin-inline: auto;
}

.porque__container i {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 4rem;
}

.porque__title {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.porque__txt {
    text-align: justify;
    line-height: 1.6;
}

/*Formulario de COntacto*/

        /* Sección Contacto */
        .contact {
            background: linear-gradient(135deg, var(--primary) 0%, #0077B5 100%);
            color: white;
            border-radius: 10px;
            padding: 60px 30px;
            margin: 40px 0;
        }

        .contact h2 {
            color: white;
        }

        .contact h2 span {
            color: #ffcc00;
        }

        .contact__container {
            display: flex;
            flex-direction: column;
            gap: 80px;
            max-width: 100%;
        }


        .contact__form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .form__group {
            margin-bottom: 20px;
        }

        .form__label {
            display: block;
            margin-bottom: 8px;
            color: var(--text);
            font-weight: 600;
            font-size: 1rem;
            text-align: start;
        }

        .form__input,
        .form__textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form__input:focus,
        .form__textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.2);
        }

        .form__textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form__submit {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            display: block;
            width: 100%;
        }

        .form__submit:hover {
            background-color: #1ea952;
            transform: translateY(-2px);
        }



/* Footer */
.footer {
    background: linear-gradient(180deg, var(--primary), #0077B5);
    color: white;
    padding: 50px 15px 30px;
    text-align: center;
}

.footer a {
    display: block;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer img {
    height: 80px;
    margin: 20px 0;
}

.footer__redes {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.footer__redes a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.footer__redes a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.footer__list-container {
    margin-top: 30px;
}

.footer__list-container h2 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.footer__lista {
    columns: 2;
    column-gap: 20px;
    text-align: left;
}

.footer__listitem {
    margin-bottom: 10px;
}

.footer__listitem a {
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline;
}

.footer__listitem a:hover {
    opacity: 0.8;
    padding-left: 5px;
}






/*Fiin codigo deep de contacto y quienes*/

/* Media Queries para tablets */
@media (min-width: 768px) {
    body {
        font-size: 17px;
    }
    
    .nav__navbar {
        padding: 8px 30px;
    }
    
    .nav__btn {
        display: none;
    }
    
    .nav__list {
        position: static;
        display: flex;
        flex-direction: row;
        width: auto;
        padding: 0;
        background: none;
        box-shadow: none;
    }
    
    .nav__link {
        border-bottom: none;
        padding: 0 15px;
    }
    
    .nav__contacto {
        display: block;
        background-color: var(--secondary);
        padding: 8px 15px;
        border-radius: 4px;
        transition: var(--transition);
    }
    
    .nav__contacto:hover {
        background-color: #1a7ac7;
        transform: translateY(-2px);
    }
    
    .header {
        flex-direction: row;
        align-items: center;
        padding: 50px 30px;
    }
    
    .header__container {
        order: 1;
        width: 50%;
        text-align: left;
        padding-right: 30px;
    }
    
    .header__imagen {
        order: 2;
        width: 50%;
        margin-bottom: 0;
    }
    
    .header__linkcontainer {
        justify-content: flex-start;
    }
    
    .tienda__cardscontainer {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .software__container {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    
    .software__container:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .software__img, .software__hgroup {
        width: 50%;
    }
    
    .software__img {
        order: 1;
        margin-bottom: 0;
    }
    
    .software__hgroup {
        order: 2;
    }
    
    .reparacion__container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .findstore {
        flex-direction: row;
    }
    
    .findstore__container, .formulario {
        width: 50%;
    }
    
    .input {
        flex-direction: row;
    }


    /*About US*/
    .about__values {
        grid-template-columns: repeat(4, 1fr);
    }
           
    .about__team {
        grid-template-columns: repeat(2, 1fr);
    }
            
    .contact__info {
        grid-template-columns: repeat(2, 1fr);
    }


    /*POrque*/

    .porque__contenedor-tarjetas {
        flex-direction: row;
        justify-content: center;
    }
    
    .porque__container {
        width: 45%;
    }
    
    .footer__lista {
        columns: 3;
    }
}

/* Media Queries para desktop */
@media (min-width: 1024px) {
    body{
        max-width: 1600px;
        margin: 0 auto;
    }
    .container {
        padding: 0 30px;
    }
    
    .header__title {
        font-size: 2.5rem;
    }
    
    .header__subtitle {
        font-size: 1.8rem;
    }
    
    .tienda {
        padding: 80px 30px;
    }
    
    .tienda__title {
        font-size: 2.5rem;
    }
    
    .software {
        padding: 80px 30px;
        max-width: 1400px;
        margin-inline: auto;
    }

    .software__imagen{
        max-width: 600px;
    }
    
    .reparacion {
        padding: 80px 30px;
    }
    
    .findstore {
        margin: 80px 30px;
        max-width: 1000px;
        margin-inline: auto;
    }


    /*about Us*/
    .about__container {
                flex-direction: row;
            }
            
            .about__content {
                width: 60%;
            }
            
            .about__values {
                width: 100%;
            }
            
            .contact__container {
                flex-direction: row;
            }
            
            .contact__info {
                width: 40%;
            }
            
            .contact__form {
                width: 60%;
            }
            /*tarjeta de presentacion de equipo*/
            .about__team {
                grid-template-columns: repeat(1, 1fr);
            }
    
    .porque {
        padding: 80px 30px;
    }
    
    .footer {
        padding: 80px 30px 50px;
    }
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}



/* Utilidades */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Utilidades */
        .text-center {
            text-align: center;
        }

        .mb-4 {
            margin-bottom: 40px;

        }


