* { margin: 0; padding: 0; box-sizing: border-box; }
body, html { font-family: 'Montserrat', sans-serif; }
html{
    scroll-behavior: smooth;
}
/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


.hero .video-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
  overflow: hidden;
}

.hero .video-background video {
  min-width: 100%;
  min-height: 100vh;
  object-fit: cover;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: -1;
}

.highlight {
  color: #e53949; /* Rojo como en la imagen */
}

.highlight-text {
  font-weight: bold;
  color: #e53949;

}
.big{
  font-size: 24px;
}

/* Header */
.hero header {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  z-index: 3;
}

.hero .hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hero .hamburger div {
  width: 25px;
  height: 3px;
  background: #fff;
}

.hero .logo {
  height: 45px;
  margin-left: 150px;
}

.hero .right-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero .btn-header {
  padding: 8px 18px;
  border: 2px solid #fff;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.hero .right-header a i {
  color: #fff;
  font-size: 1.2rem;
}

/* Sidebar */
.hero .sidebar {
  position: fixed;
  top: 0; left: -250px;
  width: 250px;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: left 0.3s;
  z-index: 4;
}
.hero .sidebar a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  margin: 15px 0;
}
.hero .sidebar.active {
  left: 0;
}

/* Main content */
.hero .content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.hero .content h1 {
  font-size: 2.5rem;
  max-width: 700px;
}
.hero .content h1 span {
  background: #df2137;
  padding: 0 5px;
  border-radius: 5px;
}
.hero .content p {
  margin: 20px 0;
  font-size: 1.2rem;
  max-width: 600px;
}
.hero .btn-main {
  background: #fff;
  color: #df2137;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}
.hero .btn-main:hover {
  background: #eee;
}

/* Corner image */
.hero .corner-image {
  position: absolute;
  bottom: 0; left: 0;
  width: 250px;
  z-index: 1;
}
.hero .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hero .content h1 { font-size: 2rem; }
  .hero .content p { font-size: 1rem; }
  .hero header { padding: 10px 20px; }
}

#typewriter::after {
  content: '|';
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}


.about-section {
  position: relative; /* importante para posicionar adentro */
  background: #fff;
  padding: 60px 160px;
 
  margin: 0 auto;
  overflow: hidden;
}


.about-corner-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  z-index: 0;
}
.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}



.about-image img {
  width: 100%;
  border-radius: 10px;
  
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.highlight {
  color: #df2137; /* rojo destacado */
}

.highlight-text {
  color: #df2137;
  font-weight: bold;
}
.grande{
  font-size: 44px;
}
.bottom-highlight {
  margin-top: 15px;
  color: #df2137;
  font-weight: bold;
  font-size: 24px;
}
.about-text {
  flex: 1;
  color: #000; /* ← Esto asegura que el texto sea negro */
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-container,
  .about-container.reverse {
    flex-direction: column;
    text-align: center;
  }
  .hero .logo {
    height: 24px;
    margin-left: 0px;
}
.hero .corner-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    z-index: 1;
}
 .about-section {
    position: relative;
    background: #fff;
    padding: 20px 20px;
    margin: 0 auto;
    overflow: hidden;
}
.about-corner-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  z-index: 0;
}
}
.story-section {
  background: #121212; /* fondo oscuro */
  color: #fff;
  padding: 60px 150px;

}

.story-top {
 
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid white;
}

.story-top h3 {
  flex: 1;
  font-size: 1.5rem;
}

.story-heading {
    
  flex: 3;
}

.story-heading h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.story-heading p {
  line-height: 1.6;
}

.story-bottom {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.story-text {
  flex: 2;
}

.story-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.story-text p {
  line-height: 1.6;
}

.story-box {
  flex: 1;
  background: #fff;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.6rem;
}

.story-box .highlight-text {
  color: #df2137;
  font-weight: bold;
}

.highlight {
  color: #df2137;
}

@media (max-width: 768px) {
  .story-top, .story-bottom {
    flex-direction: column;
  }
  .story-section {
  background: #121212; /* fondo oscuro */
  color: #fff;
  padding: 60px 40px;

}
  .story-top h3, .story-heading, .story-text, .story-box {
    width: 100%;
  }
}

.clients-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.clients-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.clients-section .highlight {
  color: #df2137;
}

.clients-section p {
  color: #555;
  margin-bottom: 40px;
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  align-items: center;
}

.clients-logos img {
  max-width: 100%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.clients-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

.bold-section {
  background: #000;
  color: #fff;
  padding: 80px 150px;
  position: relative;

  margin: auto;
}

.bold-corner-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  z-index: 0;
}

.bold-row {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.bold-text {
  flex: 1;
  min-width: 300px;
}

.bold-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.highlight {
  color:#df2137;
}

.bold-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.bold-card {
  flex: 1;
  min-width: 300px;
}

.card {
 

  background: #111;
  border: 1px solid #444;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s;
  height: 100%;
  padding-left: 40px;
  padding-bottom: 20px;
}

.card i {
  font-size: 2rem;
  margin-bottom: 15px;
  color:#df2137;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card p {
  line-height: 1.5;
}

.card:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .bold-corner-shape {
    width: 100px;
  }
  .bold-section {
  background: #000;
  color: #fff;
  padding: 80px 40px;
  position: relative;

  margin: auto;
}
  .bold-row {
    flex-direction: column;
  }
}

.cta-section {
  background: url('img/Contact\ us.png') center top / cover no-repeat;
  position: relative;
  height: 500px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 200px;
  color: #fff;
}



.cta-content {
  position: relative;
  z-index: 1;
  text-align: right;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-content .highlight {
  color: #df2137;
}

.btn-cta {
  display: inline-block;
  background: #fff;
  color: #df2137;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-cta:hover {
  background: #eee;
}

@media (max-width: 768px) {
  .cta-section {
    justify-content: center;
    text-align: center;
    padding: 0 20px;
  }
}
.form-section {
  position: relative;
  padding: 80px 450px;
  
  margin: auto;
  text-align: center;
}

.form-corner-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  z-index: 0;
}



.form-container {
  position: relative;
  z-index: 1;
}

.form-container h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.highlight {
  color: #df2137;
}

form {
    text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

form input::placeholder,
form select {
  color: #df2137;
}

.btn-send {
  background: #df2137;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-send:hover {
  background: #df2137;
}

@media (max-width: 768px) {
  .form-corner-shape {
    width: 100px;
  }
  .form-section {
  position: relative;
  padding: 80px 40px;
  
  margin: auto;
  text-align: center;
}

}

.site-footer {
  background: #111;
  color: #ccc;
  padding: 40px 20px;
  text-align: center;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  flex: 1;
  min-width: 200px;
  text-align: left;
}

.footer-left .footer-logo {
  height: 30px;
  margin-bottom: 10px;
}

.footer-left p {
  font-size: 0.9rem;
  color: #aaa;
}

.footer-menu {
  flex: 2;
  min-width: 200px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-menu a:hover {
  color: #fff;
}

.footer-social {
  flex: 1;
  min-width: 100px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.footer-social a i {
  font-size: 1.2rem;
  color: #ccc;
}

.footer-social a:hover i {
  color: #fff;
}

hr {
  border: none;
  border-top: 1px solid #444;
  margin: 30px auto;
  max-width: 1200px;
}

.copyright {
  font-size: 0.85rem;
  color: #777;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-left, .footer-menu, .footer-social {
    justify-content: center;
    text-align: center;
  }
.steps-section {
    background-color: #111;
    color: #fff;
    padding: 5px 15px;
    text-align: center;
}

}


.steps-section {
    background-color: #111;
    color: #fff;
    padding: 30px 15px;
    text-align: center;
}

.imgservicio{
    width: 50px;
    margin-bottom: 10px;
}



.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.section-title .highlight {
  color: #df2137;
  font-weight: bold;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 22%;
  max-width: 250px;
}

.step .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #fff;
}

.step h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #df2137;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .step {
    flex: 1 1 45%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }
}


@media (max-width: 767px) {
  .about-container.reverse {
    display: none !important;
  }
}
/* Transiciones y colapso para P y UL dentro de cada card */
.bold-card .card .quitartexto,
.bold-card .card ul {
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
  overflow: hidden;
}

/* Móvil: oculto por defecto */
@media (max-width: 767px) {
  .bold-card .card .quitartexto,
  .bold-card .card ul {
    max-height: 0;
    opacity: 0;
    margin-top: 0; /* evita huecos cuando está oculto */
  }
  .leer-mas-btn { display: inline-flex; }
}

/* >= Tablet: siempre visible, sin botón */
@media (min-width: 768px) {
  .bold-card .card .quitartexto,
  .bold-card .card ul {
    max-height: none;
    opacity: 1;
    overflow: visible;
  }
  .leer-mas-btn { display: none; }
}

/* Botón (con tu rojo #de313c) */
.leer-mas-btn {
    margin-top:10px;
  appearance: none;
  border: 0;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  background: #de313c;
  color: #fff;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.leer-mas-btn:hover { transform: translateY(-1px); }
.leer-mas-btn:active { transform: translateY(0); }

/* Respeta preferencias de movimiento */
@media (prefers-reduced-motion: reduce) {
  .bold-card .card .quitartexto,
  .bold-card .card ul,
  .leer-mas-btn { transition: none; }
}

