.carousel-item {
  height: 100vh;              /* ocupa toda la pantalla */
  min-height: 300px;
}

.carousel-item img {
  height: 100vh;              /* la imagen cubre todo el alto */
  width: 100%;
  object-fit: cover;          /* se ajusta sin deformarse */
}

.carousel-caption {
  bottom: 50%;                /* centramos verticalmente */
  transform: translateY(50%);
  text-align: center;
}

.carousel-caption h5 {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 25px;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7); /* para contraste */
}

.carousel-caption p {
  width: 75%;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}








/* ignore the code below */
/* Fondo azul con blur */
.navbar {
  background: rgba(0, 50, 120, 0.7); /* Azul translúcido */
  backdrop-filter: blur(8px); /* Desenfoque */
  -webkit-backdrop-filter: blur(8px); /* Safari */
}

/* Marca (logo/texto principal) */
.navbar-light .navbar-brand {
  color: #fff;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
}

/* Links activos */
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: white !important; /* Amarillo para resaltar */
}

/* Links normales */
.navbar-light .navbar-nav .nav-link {
  color: #fff !important;
  transition: color 0.3s ease;
}

/* Botón hamburguesa */
.navbar-toggler {
  background: #fff;
  padding: 1px 5px;
  font-size: 18px;
  line-height: 0.3;
}

/* Centrado de items */
.navbar-nav {
  text-align: center;
}

/* Padding links */
.nav-link {
  padding: .2rem 1rem;
}

/* Links activos y en foco */
.nav-link.active,
.nav-link:focus {
  color: white !important; /* Amarillo */
}

/* Hover de links */
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: white !important;
}


.link-area
{
  position:fixed;
  bottom:20px;
  left:20px;  
  padding:15px;
  border-radius:40px;
  background:tomato;
}
.link-area a
{
  text-decoration:none;
  color:#fff;
  font-size:25px;
}


/* company-satex.css */

/* --- Fuente moderna --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root{
  --bg: #f0f4f9;
  --card-bg: #ffffff;
  --title-color: #0f172a;
  --text: #334155;
  --highlight: #2563eb; /* azul bonito */
  --radius: 20px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 14px 40px rgba(0,0,0,0.15);
  --container-max: 1100px;
  --gap: 1.5rem;
}

body{
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Layout general */
.company-satex{
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: center;
}

.company-satex__card{
  width: 100%;
  max-width: var(--container-max);
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
  align-items: center;
  opacity: 0;                /* para animación */
  transform: translateY(30px); 
  animation: fadeInUp 1s ease forwards;
}

/* Desktop: texto + imagen */
@media (min-width: 768px){
  .company-satex__card{
    grid-template-columns: 1fr 420px;
  }
}

/* Título */
.company-satex__title{
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--title-color);
  letter-spacing: -0.02em;
}

/* Texto */
.company-satex__body{
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* Resaltado azul con subrayado animado */
.highlight{
  font-weight: 600;
  color: var(--highlight);
  position: relative;
}

.highlight::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  background: var(--highlight);
  transition: width 0.3s ease;
}

.highlight:hover::after{
  width: 100%;
}

/* Imagen con efecto hover */
.company-satex__media{
  justify-self: end;
  overflow: hidden;
  border-radius: 16px;
}

.company-satex__image{
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.company-satex__image:hover{
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

/* Animación fade in + slide up */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile ajuste */
@media (max-width: 767px){
  .company-satex__image{
    height: 200px;
  }
}


/* services.css */

/* Fuente moderna */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root{
  --primary: #2563eb;
  --bg: #f8fafc;
  --text: #1e293b;
  --muted: #475569;
  --radius: 18px;
  --shadow: 0 6px 18px rgba(0,0,0,0.1);
  --shadow-hover: 0 12px 28px rgba(0,0,0,0.18);
}

body{
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Sección */
.services{
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.services__header{
  text-align: center;
  margin-bottom: 2.5rem;
}

.services__subtitle{
  display: block;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.services__title{
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

/* Grid */
.services__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

/* Card */
.service-card{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #000;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover{
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.service-card__img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img{
  transform: scale(1.1);
  filter: brightness(65%);
}

/* Info overlay */
.service-card__info{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem;
  background: rgba(37, 99, 235, 0.92);
  color: white;
  transform: translateY(60%);
  transition: transform 0.4s ease;
  border-radius: 0 0 var(--radius) var(--radius);
}

.service-card__info h3{
  font-size: 1.2rem;
  margin: 0 0 0.3rem 0;
}

.service-card__info p{
  font-size: 0.95rem;
  line-height: 1.4;
  color: #f1f5f9;
}

/* Mostrar texto al hacer hover */
.service-card:hover .service-card__info{
  transform: translateY(0);
}

/* ------------------------------
   📱 RESPONSIVE DESIGN
--------------------------------*/

/* Ajustes para tablets */
@media (max-width: 991px) {
  .carousel-caption h5 {
    font-size: 32px;   /* más pequeño en tablets */
  }
  .carousel-caption p {
    font-size: 16px;
    width: 85%;
  }
  .navbar-light .navbar-brand {
    font-size: 20px;
  }
}

/* Ajustes para móviles */
@media (max-width: 767px) {
  .carousel-item {
    height: 70vh;  /* no ocupar todo en pantallas pequeñas */
  }
  .carousel-item img {
    height: 70vh;
  }
  .carousel-caption {
    bottom: 40%;                  /* más arriba */
    transform: translateY(40%);
    padding: 0 15px;
  }
  .carousel-caption h5 {
    font-size: 22px;
    letter-spacing: 1px;
  }
  .carousel-caption p {
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
  }
  .navbar-light .navbar-brand {
    font-size: 18px;
    letter-spacing: 1px;
  }
  .navbar-nav {
    text-align: center;
  }
}

/* Extra pequeños (menos de 480px) */
@media (max-width: 480px) {
  .carousel-item {
    height: 60vh;
  }
  .carousel-item img {
    height: 60vh;
  }
  .carousel-caption h5 {
    font-size: 18px;
  }
  .carousel-caption p {
    font-size: 13px;
  }
}
