:root {
    --bs-blue: #2f28bf;
    --bs-green: #F700B1;
    --bs-yellow: #ffe600;
    --bs-black:#000;
    --bs-white:#fff;
}
html {
    font-size: 62.5%;  /* 1 rem = 10px **/
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 2;
    font-weight: 400;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 3.8rem;
}
@media (min-width: 768px) {
    h1 {
        font-size: 5rem;
    }
}

h2 {
    font-size: 3.2rem;
}
@media (min-width: 768px) {
    h2 {
        font-size: 4rem;
    }
}
h3 {
    font-size: 2.4rem;
}
@media (min-width: 768px) {
    h3 {
        font-size: 3rem;
    }
}
/*boton de conoce nuestres productos*/
.btn-productos{
    transition: all 300ms ease;
}
.btn-productos:hover{
    background-color: var(--bs-yellow) !important;
    color: black;
}
/** Reescribir colores */
.text-primary,
.nombre-sitio {
    color: var(--bs-blue)!important;
}
.bg-success,
.btn-success {
    background-color: var(--bs-green)!important;
}
.bg-primary,
.btn-primary {
    background-color: var(--bs-blue)!important;
}
.bg-warning
{
    background-color: var(--bs-yellow)!important;
}

.hero {
    background-image: url(../img/principal.png);
    height: 25rem;
    background-size: cover;
    background-position: center center;
}
.multimedia {
    background-image: url(../img/laptop.png);
    height: 50rem;
    background-size: cover;
    background-position: center center;
}
.svg1{
    width: 10rem;
    margin: 0 auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    color: var(--bs-green)!important;
}
.svg2{
    width: 10rem;
    margin: 0 auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    color: var(--bs-green)!important;
}
.svg3{
    width: 10rem;
    margin: 0 auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    color: var(--bs-green)!important;
}
.svg4{
    width: 10rem;
    margin: 0 auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    color: var(--bs-green)!important;
}
.producto-lap{
    height: 45rem;
   
}


@media (min-width: 768px) {
    .hero {
        height: 55rem;
    }
}

/** Productos */
@media (min-width:768px) {
    .producto img {
        height: 45rem;
        width: 100%;
        object-fit: cover;
    }
}

.categoria img {
    transition-property: transform;
    transition-duration: 300ms;
}
.categoria img:hover {
    transform: scale(1.2);
}

.galeria li:not(:last-of-type) {
    margin-bottom: 1rem;
}

.form-control {
    padding: 1rem;
    font-size: 1.6rem;
}
.btn{
    margin: 0 auto;
    background-color: var(--bs-blue) !important;
}


 /* Estilo para ocultar el submenú */
 .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #f8f9fa;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}


/* Mostrar el submenú al pasar el cursor */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Alinear correctamente el submenú */
.dropdown {
    position: relative;
}

/*responsivo submenus*/
@media (max-width: 768px) {
    .navbar-nav.show {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .dropdown-menu {
        position: static;
        width: 100vw; /* Hace que ocupe el ancho completo */
        left: 0; /* Alinea el menú al borde izquierdo */
        top: 0;
        margin-top: 0.5rem;
        text-align: center;
        background-color: #ffffff;
        box-shadow: none;
    }
   
}

/* Estilos adicionales */
.dropdown-menu a {
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 1.6rem;
    transition: all 300ms;
}

.dropdown-menu a:hover {
    background-color: var(--bs-blue);
    color: white;
    
}


/*seccion de branding*/
.hero-section {
    background-color: #e8f4f4;
    padding: 4rem 0;
}
.pricing-card {
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    height: 100%;
}
.pricing-card:hover {
    transform: translateY(-5px);
}
.btn-primary {
    background-color: #3837a1;
    border-color: #3837a1;
}
.btn-outline-primary {
    border-color: #3837a1;
    color: #3837a1;
}
.btn-outline-primary:hover {
    background-color: #3837a1;
    border-color: #3837a1;
}
.service-icon {
    width: 50px;
    height: 50px;
    background-color: #0c0b76;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.cuadro-des h5{
    font-size: 2.3rem;
}
.cuadro-des h5, p{
    color: white;

}
.btn_quiero{
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--bs-white);
}
.btn_ejemplo{
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
}

.footer {
    background-color: #3837a1;
    color: white;
    padding: 3rem 0;
}
.menu-footer a{
    text-decoration: none;
}
.imagenes{
    overflow: hidden;
    transition: transform 0.3s ease;
    transform-origin: center;
   
}
.imagenes:hover{
    transform: scale(1.1);
}
.iconos-redes img{
    margin-right: 10px;
    width: 35px;
   
}

.card-amarilla{
    border:2px solid var(--bs-yellow) ;
    transition: all 300ms ease;
   
}
.card-amarilla:hover{
    box-shadow: 0 0 10px rgba(255, 234, 0, 0.942);
}

.card-magenta{
    border:2px solid var(--bs-green) ;
    transition: all 300ms ease;
}
.card-magenta:hover{
    box-shadow: 0 0 10px rgba(255, 2, 120, 0.942);
}
.card-azul{
    border:2px solid var(--bs-blue) ;
    transition: all 300ms ease;
}
.card-azul:hover{
    box-shadow: 0 0 10px rgba(8, 0, 255, 0.942);

}

/*SOCIAL MEDIA*/
.titulos-social{
    color: var(--bs-green);
}

/*seccion de sobre nosotros*/
.texto_parrafo p{
    color: var(--bs-black);
}
footer .texto_parrafo {
    margin-bottom: 4rem;
}

/*seccion de sitios web*/

   
