﻿html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0f0f0f;
    color: #f5f5f5;
}

a {
    color: #00ff99;
}

    a:hover {
        color: #ff5733;
    }

header {
    background-color: #1a1a1a;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

footer {
    background-color: #1a1a1a;
    color: #aaa;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

.avatar-personal {
   width: 500px; /* Ajusta según tu gusto */
   height: 250px;
   object-fit: cover;
   border-radius: 5%;
   box-shadow: 0 0 20px rgb(255, 255, 255, 0.7);
   transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .avatar-personal:hover {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255, 250, 255, 0.7);
    }

.banner-servicios {
    width: 500px; /* Ajusta según tu gusto */
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.icon-link {
    display: inline-block;
    padding: 15px;
    background-color: transparent;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .icon-link:hover {
        /*background-color: #00ff99;*/
        color: #34c96b;
        transform: scale(1.05);
        /*box-shadow: 0 0 10px #00ff99;*/
    }

p.light-text{
    font-family: 'Roboto',
        sans-serif;
    font-weight: 200;
}

titulo-servicios{
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: white;
}

.card-img {
    border-radius: 12px;
    max-height: 250px;
    object-fit: cover;
    width: 80%;
}
.contenedor-imagen-clientes {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}
.img-clientes {
    border-radius: 5px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .img-clientes {
        height: 200px;
    }
    .card-img{
        width: 100%
    }
}

.card-servicio {
    background-color: #1D2024;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 3px 10px black;
    margin-bottom: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-margin-top: 100px;
}

    .card-servicio:hover {
        transform: translateY(-5px);
    }

    .card-servicio p, .card-servicio li {
        color: #e0e0e0;
        font-size: 1rem;
        line-height: 1.6;
    }

    .card-servicio h3 {
        color: #34c96b;
        margin-bottom: 30px;
    }

.lista-dos-columnas {
    column-count: 2;
    font-weight: 400;
    column-gap: 40px;
    padding-left: 20px;
    margin-bottom: 0;
}
.lista-3-columnas {
    column-count: 3;
    font-weight: 400;
    column-gap: 100px;
    padding-left: 20px;
    padding-top: 20px;
    text-align: center;
    margin-bottom: 0;
}

    .lista-3-columnas li {
        color: #7f8280;
    }

@media (max-width: 768px) {
    .lista-3-columnas {
        column-count: 2;
    }
}
@media (max-width: 768px) {
    .lista-dos-columnas {
        column-count: 1;
    }
}
 
.border-top {
    border-top: 1px solid #e5e5e5;
    
}
.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}
  
.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}
  
button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}
  
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}
  
  
.navbar-brand img {
      height: 40px;
}
  
.navbar-nav .nav-link {
      color: #00ff99;
      font-weight: 500;
      transition: all 0.3s ease-in-out;
}
  
    .navbar-nav .nav-link:hover {
          color: #00ff99;
          text-shadow: 0 0 6px #00ff99;
    }
  
.navbar {
      background-color: #1a1a1a;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
  
    .navbar-toggler {
      border-color: #00ff99;
    }

#desarrollo-web {
    scroll-margin-top: 100px; /* para que no tape el navbar fijo */
}
#programacion-plc {
    scroll-margin-top: 100px; /* para que no tape el navbar fijo */
}
#integracion-disp {
    scroll-margin-top: 100px; /* para que no tape el navbar fijo */
}
#trazabilidad {
    scroll-margin-top: 100px; /* para que no tape el navbar fijo */
}
#sobre-mi {
    scroll-margin-top: 100px; /* para que no tape el navbar fijo */
}
#servicios {
    scroll-margin-top: 100px; /* para que no tape el navbar fijo */
}
#inicio {
    scroll-margin-top: 100px; /* para que no tape el navbar fijo */
}