
/* ===========================
   RESET Y VARIABLES
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

/* ===========================
   ESTILOS GENERALES
=========================== */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #f0f4ff 0%, #e6f0fa 100%);
  color: #222;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main, section {
  flex: 1 0 auto;
}

/* ===========================
   HEADER Y NAVEGACIÓN
=========================== */
header {
    background: #5b13e2;
    color: #fff;
    padding: 1px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
    height: 70px; /* Ajusta según el tamaño de tu logo */
    box-shadow: 0 2px 8px rgba(102,20,255,0.08);
}

/*logo de la empresa*/
.logo img {
    width: 120px;
    transition: width 0.2s;
}

@media (max-width: 600px) {
    .logo img {
        width: 70px;
    }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.08em;
    padding: 8px 18px;
    border-radius: 8px;
    transition: color 0.2s;
    overflow: hidden;
}

nav ul li a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 6px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700 0%, #007bff 100%);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 1;
}

nav ul li a:hover,
nav ul li a:focus {
    color: #ffd700;
}

nav ul li a:hover::after,
nav ul li a:focus::after {
    transform: scaleX(1);
}

/* ===========================
   MENÚ HAMBURGUESA
=========================== */
.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1201;
  background: transparent; /* Sin fondo */
  border-radius: 8px;
  box-shadow: none;
  transition: background 0.2s;
}

.menu-icon span {
  display: block;
  width: 28px;
  height: 3.5px;
  margin: 5px 0;
  background: #f8f8f8;
  border-radius: 2px;
  transition: 0.3s;
  box-shadow: 0 1px 2px rgba(102,20,255,0.08);
}

.menu-icon:hover span {
  background: #c4bebe;
}

@media (max-width: 900px) {
  .menu-icon {
    display: flex;
  }
  nav.menu ul {
    display: none;
    flex-direction: column;
    background: rgba(255,255,255,0.97);
    position: absolute;
    top: 70px;
    right: 12px;
    width: 82vw;
    max-width: 290px;
    box-shadow: 0 12px 32px rgba(44,62,80,0.18);
    border-radius: 0 0 18px 18px;
    padding: 32px 0 24px 0;
    z-index: 1200;
    text-align: left;
    backdrop-filter: blur(6px);
    border: 1.5px solid #e0e7ef;
    animation: menuFadeIn 0.35s;
  }
  .menu-toggle:checked + .menu-icon + nav.menu ul {
    display: flex;
  }
  header {
    position: relative;
  }
  nav.menu ul li {
    margin: 0 0 8px 0;
  }
  nav.menu ul li a {
    color: #6614ff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
    display: block;
    font-size: 1.13em;
  }
  nav.menu ul li a:hover,
  nav.menu ul li a:focus {
    background: #f0f4ff;
    color: #007bff;
  }
}
/* Animación hamburguesa */
.menu-toggle:checked + .menu-icon span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
.menu-toggle:checked + .menu-icon span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Animación de aparición del menú */
@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(-20px);}
  to { opacity: 1; transform: translateY(0);}
}

/* ===========================
   SECCIONES PRINCIPALES
=========================== */
section {
    padding: 48px 20px 38px 20px;
    background: #fff;
    margin: 32px auto;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(102,20,255,0.07);
    max-width: 1100px;
}

#inicio h1 {
    font-size: 2.3em;
    color: #6614ff;
    margin-bottom: 18px;
}

#inicio h3 {
    text-align: center;
}

#inicio p {
    font-size: 1.18em;
    color: #444;
    margin-bottom: 28px;
}

.imagenes-principales {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    border-radius: 12px;
    background: linear-gradient(90deg, #f0f4ff 60%, #e6f0fa 100%);
    box-shadow: 0 2px 12px rgba(102,20,255,0.07);
    scrollbar-width: none;           /* Firefox */
    -ms-overflow-style: none;        /* IE y Edge */
    justify-content: center;
}
/* Scrollbar para navegadores Webkit (Chrome, Edge, Safari) */
.imagenes-principales::-webkit-scrollbar {
    display: none;                   /* Chrome, Safari y Opera */
}

.imagenes-principales img {
    width: 300px;
    max-width: 90vw;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(102,20,255,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    scroll-snap-align: center;
    flex-shrink: 0;
    background: #fff;
    padding: 6px;
}
.imagenes-principales img:hover {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: 0 12px 32px rgba(102,20,255,0.18);
}

/* ===========================
   BOTONES
=========================== */
.boton-contacto {
    display: inline-block;
    margin: 18px 0 0 0;
    padding: 14px 36px;
    background: linear-gradient(90deg, #6614ff 0%, #007bff 100%);
    color: #fff;
    font-size: 1.13em;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    box-shadow: 0 2px 8px rgba(102,20,255,0.10);
    transition: background 0.3s, transform 0.2s;
    cursor: pointer;
}
.boton-contacto:hover {
    background: linear-gradient(90deg, #007bff 0%, #6614ff 100%);
    transform: translateY(-2px) scale(1.04);
}

/* ===========================
   SERVICIOS
=========================== */
#servicios-destacados {
    background: #f8f9fa;
    padding: 48px 0 38px 0;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(102,20,255,0.07);
}
/* SERTVICIOS PALABRA */
#servicios-destacados h2 {
    color: #6614ff;
    margin-bottom: 30px;
    font-size: 2.1em;
    font-weight: 900;
    text-align: center;
    width: 100%;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, #6614ff 0%, #007bff 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-emphasis-color: transparent;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(102,20,255,0.08);
}

#servicios-destacados h1 {
    color: #6614ff;
    margin-bottom: 30px;
    font-size: 1.5em;
    font-weight: 700;
}


.servicios-lista {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.servicio {
    display: flex;
    flex-direction: column;
    align-items: center !important; /* <-- fuerza el centrado SIEMPRE */
    text-align: center;
    background: #fff;
    padding: 28px 18px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    width: 260px;
    min-height: 180px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.servicio:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(102,20,255,0.13);
}
.servicio h3 {
    color: #6614ff;
    margin-bottom: 10px;
    font-size: 1.18em;
}
.servicio p {
    color: #444;
    font-size: 1em;
}

/* ===========================
   FORMULARIO DE CONTACTO
=========================== */
.form-contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 30px 0 18px 0;
}
.form-contacto input,
.form-contacto textarea {
    width: 100%;
    max-width: 350px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    resize: none;
}
.form-contacto textarea {
    min-height: 80px;
}

/* ===========================
   REDES SOCIALES
=========================== */
.redes-sociales {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin: 18px 0 10px 0;
}

.redes-sociales a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 245, 255, 0.85);
  box-shadow: 0 2px 12px rgba(102,20,255,0.07);
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  text-decoration: none;
}

.redes-sociales a:hover,
.redes-sociales a:focus {
  background: #f0f4ff;
  box-shadow: 0 4px 18px rgba(102,20,255,0.15);
  transform: scale(1.10) rotate(-4deg);
}

.redes-sociales svg,
.redes-sociales img {
  width: 28px;
  height: 28px;
  display: block;
  border-radius: 50%;
  transition: filter 0.2s;
}

/* ===========================
   PIE DE PÁGINA (FOOTER)
=========================== */
footer {
    background: #333;
    color: #fff;
    padding: 18px;
    margin-top: 30px;
     /* border-radius: 0 0 14px 14px;*/
    box-shadow: 0 -0px 8px rgba(102,20,255,0.07);
    font-size: 1.15em;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    border-radius: 0 !important;
}

/* ===========================
   SECCIÓN NOSOTROS
=========================== */
.nosotros {
  background: #fff;
  padding: 48px 36px 36px 36px;
  border-radius: 22px;
  max-width: 900px;
  margin: 60px auto 40px auto;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
  font-family: 'Segoe UI', Arial, sans-serif;
  border: 1.5px solid #e0e7ef;
  position: relative;
  text-align: center;
}

.nosotros h1 {
  color: #3730a3;
  font-size: 2.3em;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: 1px;
}

.nosotros p {
  color: #374151;
  font-size: 1.15em;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* GRID DE VALORES */
.valores-nosotros {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: stretch;
  align-items: stretch;
  margin-top: 36px;
  width: 100%;
}

.valor {
  background: #fff;
  border: 1.5px solid #e0e7ef;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(102,20,255,0.09);
  padding: 32px 22px 24px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.25s, transform 0.18s, background 0.18s;
  height: 100%;
}

.valor:hover {
  box-shadow: 0 16px 48px rgba(102,20,255,0.16);
  transform: translateY(-8px) scale(1.04);
  background: #f8f9ff;
}

.icono-valor {
  font-size: 2.5em;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  transition: transform 0.18s;
}

.valor:hover .icono-valor {
  transform: scale(1.12) rotate(-6deg);
}

.valor h2 {
  font-size: 1.18em;
  color: #6614ff;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.valor p {
  color: #444;
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 0;
}

/* LAPTOPS Y TABLETS: 2 columnas */
@media (max-width: 1100px) {
  .nosotros {
    max-width: 98vw;
    padding: 32px 10vw 28px 10vw;
  }
  .valores-nosotros {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* MÓVIL: 1 columna */
@media (max-width: 700px) {
  .nosotros {
    padding: 18px 4vw;
    max-width: 98vw;
    margin: 14px 0;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(102,20,255,0.10);
  }
  .nosotros h1 {
    font-size: 1.4em;
    margin-bottom: 12px;
  }
  .nosotros p {
    font-size: 1em;
    margin-bottom: 16px;
  }
  .valores-nosotros {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 14px;
  }
  .valor {
    padding: 18px 8px 14px 8px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(102,20,255,0.09);
  }
  .icono-valor {
    font-size: 2em;
    margin-bottom: 8px;
  }
  .valor h2 {
    font-size: 1em;
    margin-bottom: 8px;
  }
  .valor p {
    font-size: 0.98em;
  }
}

/* ===========================
   MEDIA QUERIES (RESPONSIVE)
=========================== */
@media (max-width: 600px) {
  body {
    padding: 0;
    background: linear-gradient(135deg, #e0e7ff 0%, #f8fafc 100%);
  }
  header {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 6vw 10px 6vw;
    gap: 10px;
    background: linear-gradient(90deg, #6614ff 60%, #007bff 100%);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 4px 16px rgba(102,20,255,0.10);
  }
  .logo img {
    width: 64px;
    margin: 0 auto 8px auto;
    display: block;
  }
  nav ul {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: stretch;
  }
  nav ul li a {
    padding: 12px 0;
    font-size: 1.1em;
    width: 100%;
    display: block;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 2px;
    text-align: center;
    transition: background 0.2s, color 0.2s;
  }
  nav ul li a:hover,
  nav ul li a:focus {
    background: #ffd700;
    color: #3730a3;
  }
  section, .nosotros, .form-contacto {
    padding: 18px 4vw;
    max-width: 98vw;
    margin: 14px 0;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(102,20,255,0.10);
    background: #fff;
  }
  h1, h2 {
    font-size: 1.4em;
    margin-bottom: 12px;
    text-align: center;
    color: #3730a3;
  }
  .nosotros-icono {
    font-size: 2.2em;
    margin-bottom: 6px;
  }
  .imagenes-principales {
    gap: 8px;
    padding-bottom: 8px;
    border-radius: 10px;
  }
  .imagenes-principales img {
    width: 96vw;
    max-width: 98vw;
    padding: 2px;
    border-radius: 12px;
  }
  .servicios-lista {
    flex-direction: column;
    gap: 18px;
  }
  .servicio {
    width: 94vw;
    max-width: 370px;
    margin: 0 auto 12px auto;
    padding: 20px 14px 18px 14px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f8f9fa 70%, #e6f0fa 100%);
    box-shadow: 0 4px 18px rgba(102,20,255,0.10), 0 1.5px 0 #e0e7ef;
    border: 1.5px solid #e0e7ef;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .servicio h3 {
    font-size: 1.15em;
    color: #6614ff;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
  }
  .servicio p {
    font-size: 1em;
    color: #444;
    text-align: left;
    margin-bottom: 0;
    width: 100%;
  }
  .servicio:hover {
    box-shadow: 0 8px 32px rgba(102,20,255,0.15);
    transform: translateY(-4px) scale(1.02);
    background: #f0f4ff;
  }
  .form-contacto input,
  .form-contacto textarea {
    max-width: 100%;
    font-size: 1.08em;
    border-radius: 10px;
    border: 1.5px solid #e0e7ef;
    margin-bottom: 6px;
    background: #f8fafc;
    box-shadow: 0 1px 4px rgba(102,20,255,0.04);
  }
  .form-contacto textarea {
    min-height: 60px;
  }
  .boton-contacto,
  button,
  input[type="submit"] {
    width: 100%;
    padding: 16px 0;
    font-size: 1.18em;
    border-radius: 14px;
    background: linear-gradient(90deg, #6614ff 0%, #007bff 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 16px rgba(102,20,255,0.13);
    margin: 14px 0 8px 0;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s, box-shadow 0.15s;
    outline: none;
    display: block;
  }
  .boton-contacto:hover,
  button:hover,
  input[type="submit"]:hover {
    background: linear-gradient(90deg, #007bff 0%, #6614ff 100%);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(102,20,255,0.18);
  }
  .boton-contacto:active,
  button:active,
  input[type="submit"]:active {
    background: #6614ff;
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(102,20,255,0.10);
  }
  .redes-sociales {
    gap: 14px;
    margin-top: 10px;
  }
  .redes-sociales svg {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f8fafc;
    box-shadow: 0 2px 8px rgba(102,20,255,0.08);
    padding: 4px;
    transition: background 0.2s, transform 0.2s;
  }
  .redes-sociales a:hover svg {
    background: #ffd700;
    transform: scale(1.12) rotate(-6deg);
  }
  footer {
    font-size: 1em;
    padding: 14px 4vw;
    margin-top: 10px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, #6614ff 60%, #007bff 100%);
    color: #fff;
    text-align: center;
    box-shadow: 0 -2px 8px rgba(102,20,255,0.07);
  }
}
@media (max-width: 900px) {
    section {
        max-width: 98vw;
        margin: 16px auto;
        padding: 24px 4vw 18px 4vw;
    }
}

/* ===========================
   OTROS ESTILOS O UTILIDADES
=========================== */
/* Aquí puedes agregar utilidades, helpers, etc. */

/* Mejorar botón en escritorio */
@media (min-width: 601px) {
  .boton-contacto,
  button,
  input[type="submit"] {
    width: auto;
    min-width: 180px;
    max-width: 320px;
    padding: 12px 36px;
    font-size: 1.13em;
    border-radius: 8px;
    margin: 18px 0 0 0;
    display: inline-block;
  }
}
@media (min-width: 901px) {
  section {
    max-width: 1200px;
    margin: 48px auto 40px auto;
    padding: 64px 60px 54px 60px;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(102,20,255,0.09);
    background: #fff;
  }
  #inicio h1 {
    font-size: 2.8em;
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: 1px;
  }
  #inicio h2 {
    font-size: 1.5em;
    margin-bottom: 28px;
    color: #3730a3;
  }
  #inicio p {
    font-size: 1.18em;
    margin-bottom: 32px;
  }
  .boton-contacto,
  button,
  input[type="submit"] {
    width: auto;
    min-width: 180px;
    max-width: 320px;
    padding: 14px 44px;
    font-size: 1.15em;
    border-radius: 10px;
    margin: 18px 0 0 0;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .boton-contacto:hover,
  button:hover,
  input[type="submit"]:hover {
    background: linear-gradient(90deg, #007bff 0%, #6614ff 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(102,20,255,0.18);
  }
  .servicios-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    margin-top: 32px;
  }
  .servicio {
    background: #f8f9ff;
    border: 1.5px solid #e0e7ef;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(102,20,255,0.07);
    width: 290px;
    min-height: 220px;
    padding: 36px 26px 30px 26px;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center; /* <-- Cambia esto */
    justify-content: flex-start;
  }
  .servicio:hover {
    background: #fff;
    box-shadow: 0 12px 36px rgba(102,20,255,0.13);
    transform: translateY(-8px) scale(1.04);
  }
  .servicio h3 {
    color: #6614ff;
    font-size: 1.25em;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .servicio p {
    color: #444;
    font-size: 1.08em;
    line-height: 1.7;
  }
  .imagenes-principales {
    gap: 44px;
    padding-bottom: 24px;
    border-radius: 18px;
    margin-top: 36px;
    justify-content: center;
  }
  .imagenes-principales img {
    width: 360px;
    max-width: 360px;
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(102,20,255,0.10);
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .imagenes-principales img:hover {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 16px 48px rgba(102,20,255,0.18);
  }
  .redes-sociales {
    gap: 22px;
    margin-top: 18px;
  }
  .redes-sociales a {
    width: 48px;
    height: 48px;
    background: #f8f9ff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(102,20,255,0.07);
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  }
  .redes-sociales svg,
  .redes-sociales img {
    width: 28px;
    height: 28px;
  }
  .redes-sociales a:hover {
    background: #ffd700;
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 8px 24px rgba(102,20,255,0.13);
  }
  footer {
    font-size: 1.15em;
    padding: 28px 0;
    border-radius: 0 0 22px 22px;
    margin-top: 48px;
    background: #333;
    color: #fff;
    text-align: center;
    box-shadow: 0 -2px 12px rgba(102,20,255,0.07);
  }
  /* Sobre Nosotros y Contacto */
  #sobre-nosotros, #contacto-inicio {
    background: #f8f9ff;
    border: 1.5px solid #e0e7ef;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.10);
    border-radius: 22px;
    max-width: 700px;
    margin: 60px auto 40px auto;
    padding: 56px 48px 44px 48px;
    text-align: center;
  }
  #sobre-nosotros h2, #contacto-inicio h2 {
    font-size: 2em;
    color: #6614ff;
    margin-bottom: 18px;
    font-weight: 800;
  }
  #sobre-nosotros p, #contacto-inicio p {
    font-size: 1.18em;
    color: #444;
    margin-bottom: 22px;
    line-height: 1.7;
  }
  #sobre-nosotros a.boton-contacto {
    margin-top: 18px;
    background: #fff;
    color: #6614ff;
    border: 1.5px solid #6614ff;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
  }
  #sobre-nosotros a.boton-contacto:hover {
    background: #6614ff;
    color: #fff;
  }
}

/* Encabezados principales modernos y llamativos */
#servicios-destacados h2,
#sobre-nosotros h2,
#contacto-inicio h2 {
  font-size: 2.1em;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: linear-gradient(90deg, #6614ff 0%, #007bff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-emphasis-color: transparent;
  margin-bottom: 24px;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(102,20,255,0.08);
}

/* Ajuste para móvil: tamaño menor pero mismo estilo */
@media (max-width: 600px) {
  #servicios-destacados h2,
  #sobre-nosotros h2,
  #contacto-inicio h2 {
    font-size: 1.3em;
    margin-bottom: 16px;
    letter-spacing: 1px;
  }
}

/* Estilos para valores de la sección Nosotros */
.valores-nosotros {
  display: flex;
  gap: 36px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
  align-items: stretch;
}
.valor {
  background: #fff;
  border: 1.5px solid #e0e7ef;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(102,20,255,0.09);
  padding: 32px 26px 24px 26px;
  max-width: 340px;
  min-width: 220px;
  flex: 1 1 260px;
  text-align: center;
  margin-bottom: 22px;
  transition: box-shadow 0.25s, transform 0.18s, background 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.valor:hover {
  box-shadow: 0 16px 48px rgba(102,20,255,0.16);
  transform: translateY(-8px) scale(1.04);
  background: #f8f9ff;
}
.icono-valor {
  font-size: 3em;
  margin-bottom: 14px;
  transition: transform 0.18s;
}

.valor:hover .icono-valor {
  transform: scale(1.12) rotate(-6deg);
}

.valor h2 {
  font-size: 1.28em;
  color: #6614ff;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.valor p {
  color: #444;
  font-size: 1.09em;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Responsive para móvil */
@media (max-width: 700px) {
  .valores-nosotros {
    flex-direction: column;
    gap: 18px;
    align-items: center;
    margin-top: 18px;
  }
  .valor {
    max-width: 98vw;
    min-width: 0;
    padding: 20px 8px 14px 8px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(102,20,255,0.09);
  }
  .icono-valor {
    font-size: 2em;
    margin-bottom: 8px;
  }
  .valor h2 {
    font-size: 1.08em;
    margin-bottom: 8px;
  }
  .valor p {
    font-size: 1em;
  }
}

