:root {
    --bs-blue: #1717e5;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #8a8a8e;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #8a8a8e;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #202020;
    --bs-primary: #1717e5;
    --bs-secondary: #8a8a8e;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #202020;
    --bs-primary-rgb: 23, 23, 229;
    --bs-secondary-rgb: 138, 138, 142;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 32, 32, 32;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 17, 17, 17;
    --bs-body-color-rgb: 32, 32, 32;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1.2rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #202020;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(17, 17, 17, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #1717e5;
    --bs-link-hover-color: #1212b7;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
    --primary-color: #8e44ad;
    --secondary-color: #78a1bb;
    }




.navbar-index {
    display: flex;
    justify-content: space-between;
    max-height: 250px;
    margin-bottom: 0;
    position: relative; 
}

.navbar-index  ul {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    list-style: none;
    text-decoration: none;
    color: aliceblue;
    line-height: 250px;
    font-family: 'Inter';
    font-size: 25px;
    margin-right: 20px;
}

.navbar-index a {
    text-decoration: none;
    color: aliceblue;
    position: relative; 
}
.navbar-index a:hover {
    color: #8a8a8e;
}

.navbar-index a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #8a8a8e; 
    transition: width 0.3s ease; 
}

.navbar-index a:hover::after {
    width: 100%;  
}

.navbar-index img {
    width: 250px;
    height: auto;
}

#menu-toggle {
    display: none;
}

.menu-toggle {
    display: none;
    position: absolute;
    right: 60px;
}

/*Boton de contacto*/

.btn-personalizado {
    background-color: var(--primary-color);
    color: aliceblue;
    padding: 15px;
    border: 2px solid white;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-personalizado:hover {
    background-color: var(--secondary-color) ;
    color: black;
    padding: 20px;
}

.btn-enviar {
    background-color: var(--primary-color);
    color: aliceblue;
    padding: 10px;
    border: aliceblue;
    border-radius: 10px;
    margin-right: 5px;
}

.btn-enviar:hover {
    background-color: #11a761 ;
    color: aliceblue;
    
}

.btn-reset {
    background-color: rgb(146, 54, 54);
    color: aliceblue;
    padding: 10px;
    border: aliceblue;
    border-radius: 10px;
}

.btn-reset:hover {
    background-color:  #df3e3e ;
}

/*texto de about*/

.txt-center {
    max-width: 500px; 
    margin: 0 auto; 
    text-align: center;
    margin-bottom: 20px;
}

.row-about {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin: 0 60px;
}

.row-about img {
    width: 100%;
}

/* CSS CARDS PLANES */

.separador {
    margin : 30px 60px ;
}

.contenedor-servicios_planes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.services-container {
    display: flex;
    gap: 20px; 
}

.services-item {
    padding: 20px;
    text-align: center;
    max-width: 300px;
}

.services-item img {
    max-width: 40%;
    height: auto;
    margin-bottom: 10px;
}

.services-item h5 {
    margin-bottom: 10px;
}

.services-item p {
    color: #666;
}

/*CONTACTO CSS*/

.gradient-personalizado {
    background: rgb(214,51,132);
background: linear-gradient(45deg, rgba(214,51,132,1) 0%, rgba(120,161,187,1) 46%, rgba(142,68,173,1) 100%);
}