/* general setting */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {

  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Ajusta según la altura de tu header */
}
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: black;
    overflow-x: hidden;
    color: white;
}

/* header start */


  
  .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20% 5%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(34,0,43,0.9) 100%);
    position: relative;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Makes sure it stays above other elements */
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  }
  
  .logo {
    color: #ff00c8;
    font-size: 1.2rem;
    font-weight: bold;
  }
  .logo img {
    height: 40px;
    max-width: 100%;
    display: block;
    color: #ff00c8;
  }
  
  
  .nav-menu {
    display: flex;
    gap: 30px;
  }
  
  .nav-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  
  .nav-menu a:hover {
    color: #ff00c8;
  }
  
  /* Menu toggle button (hamburger) */
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: 1px solid #ff00c8;
    padding: 6px;
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    width: 18px;
    height: 2px;
    background-color: #ff00c8;
  }
  
  /* Responsive styles  for header */
  @media (max-width: 768px) {
    .nav-menu {
      position: fixed;
      top: 0; left: 0;
      height: 100vh;
      width: 100%;
      background-color: #000;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 30px;
      transform: translateX(-100%);
      transition: transform 0.3s ease-in-out;
      z-index: 20;
    }
  
    .nav-menu.active {
      transform: translateX(0);
    }
  
    .close-menu {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 1.8rem;
      background: none;
      border: 1px solid #ff00c8;
      color: #ff00c8;
      width: 30px;
      height: 30px;
      line-height: 25px;
      text-align: center;
      cursor: pointer;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .nav-menu a {
      font-size: 1.2rem;
      color: #ccc;
    }
  }
  
  @media (min-width: 769px) {
    .close-menu {
      display: none !important;
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      position: absolute;
      top: -9999px;
      left: -9999px;
    }
  }
  

/* header end */

/* hero start*/

.hero {
    position: relative;
    background: url('hero.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }
  
  .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
  }
  
  .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  .filled {
    background-color: #ff00c8;
    color: white;
    border: none;
  }
  
  .filled:hover {
    background-color: #e100b5;
  }
  
  .outlined {
    border: 2px solid #ff00c8;
    color: white;
    background: transparent;
  }
  
  .outlined:hover {
    background-color: #ff00c8;
    color: white;
  }
  
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .btn {
      width: 70%;
      text-align: center;
    }
  }

/* hero end*/

/* start features*/
.features-section {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 5% 5%;
    background-color: #000;
    color: white;
    text-align: center;
    flex-wrap: wrap;
    height: 100vh;
    
    
  }
  
  .feature-box {
    flex: 1 1 250px;
    border: 1px solid #f008f4;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
  }
  
  .icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .feature-box h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  
  .feature-box p {
    font-size: 1rem;
    color: #ccc;
  }
  .icon img {
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto 15px;
  }
  
  
  @media (max-width: 768px) {
    .features-section {
      flex-flow: column nowrap;
      gap: 30px;
    }
  }

  /* end features*/
  
  /* start intro*/

  .intro-section {
    position: relative;
    background: url('intro.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
  }
  
  .intro-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }
  
  .intro-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
  }
  
  
  .intro-content h2 {
    font-size: 5rem;
    font-weight: bold;
    font-style: normal;
    margin-bottom: 20px;
  }
  
  .intro-content p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
  }
  
  @media (max-width: 768px) {
    .intro-content h2 {
      font-size: 3.5rem;
    }
  
    .intro-content p {
      font-size: 1rem;
    }
  }
  

  /*end intro */

  /* start about */


  .about-section {
    display: flex;
    flex-flow: row nowrap;
    gap: 100px;
    padding: 80px 5%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .about-text {
    flex: 1 1 400px;
    max-width: 600px;
    order: 2;
    text-align: left;
  }
  
  .about-text h5 {
    color: #ff00c8;
    margin-bottom: 10px;
    font-size: 1rem;
  }
  
  .about-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .about-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .about-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
  }
  
  .about-list li {
    margin-bottom: 10px;
    font-size: 1rem;
  }
  
  .about-image {
    flex: 1 1 300px;
    max-width:600px;
    position: relative;
    border: 4px solid #ff00c8;
    padding: 5px;
    order: 1;
    z-index: 1;
  }
  
 .about-image img {
    transform: translate(7%, 7%);
    width: 110%;
    display: block;
    position: relative;
}

  
  /* Responsive */
  @media (max-width: 768px) {
      
    .about-section {
      flex-flow: column nowrap;
      align-items: center;
      gap: 50px;
    }
    
    .about-text h1 {
      font-size: 1.8rem;
    }
  
    .about-image {
      order: 1;
    }
  
    .about-text {
      order: 2;
      text-align: left;
      width: 100%;
    }
  
    .about-list {
      columns: 1;
    }
  
    .about-image img {
      width: 100%;
      transform: translate(7%, 7%)  !important;
    }
  }
  

  /* end about */
  /* start about two*/

  .container {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    padding: 40px 5%;
    gap: 100px;
    overflow: hidden;
  }
  
  .image-box {
    flex: 1;
    border: 3px solid #ff00c8;
    padding: 5px;
    max-width: 500px;
    position: relative;
    z-index: 1;
  }
  
  .image-box img {
    width: 100%; /* sobresale un poco */
    height: auto;
    display: block;
    transform: translate(-5%, 5%);
  }
  
  .text-box {
    flex: 1;
    max-width: 600px;
    z-index: 2;
  }
  
  .text-box h5 {
    color: #ff00c8;
    margin-bottom: 10px;
    font-size: 1rem;
  }
  
  .text-box h1 {
    font-size: 2.2rem;
    margin: 0 0 20px;
    font-weight: bold;
  }
  
  .text-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
  }
  
  /* Responsive layout */
  @media (max-width: 768px) {
    .container {
      flex-flow: column nowrap;
      text-align: center;
      padding: 5%;
      gap: 20px;
      text-align: left;
    }
  
    .image-box, .text-box {
      max-width: 100%;
    }
  
    .image-box img {
      width: 100%;
      transform: translate(5%, 5%);
    }
  
    .text-box h1 {
      font-size: 1.8rem;
    }
  
    .text-box p {
      font-size: 1rem;
    }
    .image-box {
      order: 1; /* imagen primero */
    }
  
    .text-box {
      order: 2;
    }
  }
/* end about two*/  

/* hero two start*/
.hero-two {
    position: relative;
    background: url('hero-two.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
  }
  
  .hero-two::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    z-index: 1;
  }
  
  .hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
  }
  
  .hero-two h1 {
    font-size: 3.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
  }

  /*hero two end*/
   /*service start*/

   .services-section {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 100px;
    padding: 120px 5%;
    background-color: #000;
  }
  
  .service-card {
    flex: 1 1 45%;
    max-width: 45%;
    border: 1px solid rgb(255, 5, 209);
    padding: 100px 20px 40px 20px; /* más padding-top para compensar la imagen */
    background-color: rgba(255, 255, 255, 0.02);
    text-align: left;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: visible;
  }
  
  .service-card img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(-170px); /* sobresale hacia arriba */
    margin-bottom: -50px;
    z-index: 1;
    position: relative;
  }
  
  
  
  
  .service-card h3 {
    margin: 10px 0;
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
  }
  
  .service-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  @media (max-width: 768px) {
    .services-section {
      flex-flow: column nowrap;
      align-items: center;
    }
  
    .service-card {
      width: 100%;
      max-width: 100%;
    }
  }
  


    /*service end */
    /* hero tree start*/

    .cta-section {
        background: url('hero\ tree.jpg') no-repeat center center/cover;
        height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
      }
      
      .cta-section::before {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom right, rgba(0,0,0,0.7), rgba(0,0,0,0.6));
        z-index: 1;
      }
      
      .cta-content {
        position: relative;
        z-index: 2;
        max-width: 700px;
        padding: 20px;
      }
      
      .cta-subtitle {
        color: #ff00c8;
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 1.1rem;
      }
      
      .cta-content h1 {
        font-size: 3.4rem;
        margin-bottom: 20px;
        font-weight: 700;
      }
      
      .cta-text {
        font-size: 1.05rem;
        color: #ccc;
      }
      
    /* hero tree end*/
    
    /* contact section start*/


.contact-section {
  background: url('example-cannabis-art.png') no-repeat center center/cover;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}

.contact-container {
  display: flex;
  flex-flow: row nowrap;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 60px;
  border: none;
  box-shadow: 0 0 40px rgba(255, 0, 200, 0.4);
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.contact-text {
  flex: 1 1 500px;
}

.contact-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-text p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .row {
  display: flex;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid #ff00c8;
  color: white;
  padding: 12px;
  width: 100%;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

.contact-form button {
  padding: 12px;
  background-color: #ff00c8;
  color: white;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #e000b0;
}

.contact-art {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-art img {
  max-width: 30%;
  height: auto;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 30px;
  }

  .contact-form .row {
    flex-direction: column;
  }

  .contact-text h2 {
    font-size: 1.8rem;
  }
  
}

.checkbox-area {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #bbb;
  margin-top: 10px;
  margin-bottom: 20px;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid #ff00c8;
  background-color: transparent;
  accent-color: #ff00c8;
  cursor: pointer;
}

.confirmation {
  color: white;
  color: #ff00c8;
  border-left: 4px solid #ff00c8;
  background-color: #111;
  color: #ccc;
  padding: 15px;
  border-left: 4px solid #ff00c8;
  text-align: center;
  margin-top: 20px;
  font-size: 0.95rem;
  box-shadow: 0 0 10px rgba(255, 0, 200, 0.1);
  border-radius: 6px;
  animation: fadeIn 0.5s ease-in-out;
}

.spinner {
  display: none;
  width: 32px;
  height: 32px;
  border: 4px solid #222;
  border-top: 4px solid #ff00c8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 15px auto;
}

.confirmation {
  color: white;
  
  border-left: 4px solid #ff00c8;
  display: none;
}

.confirmation::before {
  color: white;
  content: "✔ ";
  color: #ff00c8;
  font-weight: bold;
  margin-right: 8px;
  font-size: 1.1rem;
  animation: fadeInIcon 0.6s ease-in-out;
  display: inline-block;
  transform: translateY(2px);
}

@keyframes fadeInIcon {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(2px); }
}

 /* contact section end*/

 /* start footer*/
 .footer {
    background-color: rgba(0, 0, 0, 0.85);
    border-top: 2px solid transparent;
    padding: 30px 5% 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 10px 10px;
  }
  
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ff00c8;
  }
  
  .footer-copy {
    font-size: 0.9rem;
    color: #aaa;
  }
  
  .footer-copy .highlight {
    color: #ff00c8;
  }
  
  @media (max-width: 600px) {
    .footer-links {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
  
    .footer-copy {
      text-align: center;
    }
  }


  /* end footer*/

  .scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px; /* ✅ cambia de left: 20px a right: 20px */
    width: 40px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: opacity 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 0, 200, 0.5);
    cursor: pointer;
  }
  
  .scroll-top img {
    width: 20px;
    height: 20px;
  }
  
  .scroll-top:hover {
    opacity: 0.8;
  }



  .nav a.active {
    border-bottom: 2px solid #ff00c8;
  }

 /* politica de cookies*/

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  text-align: center;
  padding: 15px;
  z-index: 9999;
  display: none;
  
  
}

.cookie-banner button {
    
  margin-top: 20px; /* Espacio encima del botón */
  margin-left: 15px;
  padding: 8px 16px;
  background: #ff00c8;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

/*fondo de lineas*/

.grid-overlay {
  position: relative;
  background: 
    repeating-linear-gradient(
      to right, 
      rgba(255, 0, 200, 0.1) 0px, 
      rgba(255, 0, 200, 0.1) 1px, 
      transparent 1px, 
      transparent 50px
    ),
    repeating-linear-gradient(
      to bottom, 
      rgba(255, 0, 200, 0.1) 0px, 
      rgba(255, 0, 200, 0.1) 1px, 
      transparent 1px, 
      transparent 50px
    );
  animation: moveGrid 20s linear infinite;
  z-index: 1;
}

@keyframes moveGrid {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}



 


  



  
  
  
  

  


