
@import url('https://fonts.googleapis.com/css2?family=Electrolize&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

  
  :root {
      --bg: #05060a;
      --black:black;
      --bg-soft: #0b1020;
      --primary: #00d9ff;
      --primary-soft: rgba(0, 217, 255, 0.15);
      --text: #e6f1ff;
      --muted: #8fa3b8;
      --font-opensans:  "Open Sans", sans-serif;
      --font-Playfair : "Playfair Display", serif;; 
      --font-Josefin : "Josefin Sans", sans-serif;
      --font-electrolize: "Electrolize", sans-serif;;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      list-style: none;
      text-decoration: none;
    }

    body {
      min-height: 100vh;
      background: radial-gradient(ellipse at top, var(--bg-soft), var(--bg));
      color: var(--text);
      font-family: 'Inter', system-ui, sans-serif;
      overflow-x: hidden;
      
    }


    header{
        padding: 5px;
        width: 100%;
        background-color: var(--black);
        min-height: 60px;
        height: 60px;
        align-items: center;
        z-index: 9999;

    }
    .conteiner-logo{
        width: 100px;
        max-width: 100px;
    }
    .img-logo-header{
        max-width: 100%;
    }

.ul-menu{
    gap: 2rem;

}
.ul-menu li a {
    color: var(--text);

}
.div-header-conteiner-spacecenter{
    flex: 1;
}


.conteiner-nav{
    right: 0;
    margin-right: 0;
    padding-right: 20px;
     display: flex;
    align-items: center;
    vertical-align: middle;
    
}




    .cover-home{
        padding-top: 70px;
        padding-bottom: 70px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
   
    body::before {
      content: "";
      position: absolute;
      top: 60px;
      left: -50%;
      width: 200%;
      height: 100%;


      background: linear-gradient(
          120deg,
          transparent 40%,
          var(--primary-soft),
          transparent 60%
      );

    opacity: 0.35;
    animation: sweep 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    }


@keyframes sweep {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0%); }
  100% { transform: translateX(100%); }
}


    .container {
      position: relative;
      text-align: center;
      padding: 3rem 0;
      
      width: 100%;
      backdrop-filter: blur(6px);
    }

    .box-sections{
        z-index: 1;
        width: 100%;
    }
  
    .logo h1, .logo h1 div {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--primary);
      text-shadow: 0 0 20px rgba(0, 217, 255, 0.35);
      margin-bottom: 0.5rem;
    }

    .logo h1 span {
      display: block;
      font-size: 0.9rem;
      letter-spacing: 0.4em;
      color: var(--muted);
      margin-top: 0.3rem;
    }
     .cover-home h2 {
      font-family: var(--font-electrolize);
      font-weight: 500;
      margin-bottom: 1rem;
    color: var(--muted);
    }
/* 
    .img-cover{
        max-width: 300px ;
    } */

    .divider {
      width: 120px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--primary), transparent);
      margin: 2rem auto;
    }
    .divider-2 {
      width: 120px;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--muted), transparent);
      margin: 2rem auto;
    }
    
    p {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 2.5rem;
    }

    .status {
      display: inline-block;
      padding: 0.6rem 1.4rem;
      border-radius: 999px;
      border: 1px solid var(--primary-soft);
      color: var(--primary);
      font-size: 0.9rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: rgba(0, 217, 255, 0.05);
      box-shadow: 0 0 20px rgba(0, 217, 255, 0.08);
    }

    footer {
      margin-top: 3rem;
      font-size: 0.8rem;
      color: #6b7c90;
    }

    footer span {
      color: var(--primary);
    }

  

   
main{
    z-index: 1;
}
.section{
    width: 100%;
    min-height: 200px;

  
}
.section-1{
    padding: 3rem 1.5rem;
    margin: 0%;
    width: 100%;
    height: auto;
    background-color: var(--black);
}
.section-1 p{
   
    color: var(--muted);
    font-size: 20px;
}

.section-1 div{
     gap: 2rem;
    justify-content: space-around;
    width: 100%;

}

.direction-row{
    display: flex;
    flex-direction: row;
   
}

.section-1 .direction-row div {
    min-width: 30% ;
}

.section-problem {
  width: 100%;
  padding: 5rem 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 10, 0.95),
    rgba(11, 16, 32, 0.95)
  );
  position: relative;
  z-index: 1;
}

.problem-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.problem-title {
  font-family: var(--font-electrolize);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
}

.problem-divider {
  width: 120px;
  height: 2px;
  margin: 1.5rem auto 2rem;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    transparent
  );
}

.problem-description {
  max-width: 900px;
  margin: 0 auto 4rem;
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1.8;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.problem-card {
  padding: 2.2rem 1.8rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 217, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
}

.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 217, 255, 0.25);
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.12);
}

.problem-icon {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
}

.problem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.problem-card p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.problem-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.problem-cta span {
  color: var(--muted);
  font-size: 1rem;
}

.problem-cta a {
  color: var(--primary);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.problem-cta a:hover {
  border-color: var(--primary);
  text-shadow: 0 0 12px rgba(0, 217, 255, 0.6);
}


.value-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #0f0f14 0%, #141420 100%);
  color: #eaeaf0;
}

.value-container {
  max-width: 1100px;
  margin: 0 auto;
}
.value-header-conteiner{
    width: 100%;

}
.value-header {
  max-width: 650px;
  margin-bottom: 3.5rem;
  margin-left: auto;
  margin-right: auto;
}

.value-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.value-header p {
  font-size: 1.05rem;
  color: #b8b8c7;
  line-height: 1.6;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #c9c9d6;
}

.services-blocks {
  padding: 5rem 1.5rem;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.service-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-text {
  flex: 1;
}

.service-text h3 {
  font-family: var(--font-electrolize);
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.service-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin-top: 1rem;
}

.service-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.service-image img {
  max-width: 100%;
  width: 380px;
  opacity: 0.9;
  filter: drop-shadow(0 0 25px rgba(0,217,255,0.15));
}

/* Responsive */
@media (max-width: 900px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-text p {
    margin: 0 auto;
  }
}

/* ------------- */

.products-section {
  padding: 5rem 1.5rem;
  background: var(--bg-soft);
}

.products-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.products-text {
  flex: 1;
}

.products-text h2 {
  font-family: var(--font-electrolize);
  color: var(--text);
  margin-bottom: 20px;
}

.products-intro {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.products-areas {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.products-areas li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.products-areas strong {
  color: var(--primary);
  font-weight: 500;
  
}

.products-image {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.products-image img {
  max-width: 100%;
  width: 420px;
  filter: drop-shadow(0 0 25px rgba(0,217,255,0.15));
}

/* Responsive */
@media (max-width: 900px) {
  .products-content {
    flex-direction: column;
    text-align: center;
  }

  .products-intro {
    margin: 0 auto 2rem;
  }
}



.products-image-divs{
    max-width: 394px;
    overflow: hidden;
    
}


 .contact-section {
  padding: 5rem 1.5rem;
  background: var(--bg);
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-text h2 {
  font-family: var(--font-electrolize);
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.9rem 1rem;
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(0,217,255,0.15);
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  margin-top: 0.5rem;
  padding: 0.9rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, var(--primary), #00bcd4);
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0,217,255,0.35);
}

/* Responsive */
@media (max-width: 800px) {
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* -------------- */

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  background: transparent;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.2px;
  backdrop-filter: blur(2px);
  transition: all 0.25s ease;
}

.btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.wa-text {
  line-height: 1;
}



footer{
    width: 100%;
    text-align: center;
    padding-bottom: 30px;
}

.div-location{
    padding-top: 20px;
}

/* ---------- solutions responsive */
@media (max-width: 600px){
    .section-1 div h3{
      margin-bottom: 10px;
      max-height: 60px;
      height: 60px;
      min-height: 46px;
    }
    .section-1 div{
      gap: 5px;
    }
}
@media (max-width: 430px){
    .section-1 div{
      flex-direction: column;
    }
}
@media (min-width: 400px){
    
}