body {
  font-family: "Century Gothic", "Lato", sans-serif;
}

a {
  text-decoration: none;
}

.et-hero-tabs,
.et-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  text-align: center;
  padding: 0 2em;
  overflow: hidden; /* evita barras de scroll por el video */
}

/* Fondo de video */
.et-hero-tabs video,
.et-slide video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* cubre toda el área sin deformarse */
  z-index: -1; /* queda detrás del contenido */
}

.et-hero-tabs h1,
.et-slide h1 {
  font-size: 2rem;
  margin: 0;
  letter-spacing: 1rem;
  color: white;
}

.et-hero-tabs h3,
.et-slide h3 {
  font-size: 1rem;
  letter-spacing: 0.3rem;
  opacity: 0.8;
  color: white;
}

.et-hero-tabs-container {
  display: flex;
  flex-direction: row;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 70px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 10;
}
.et-hero-tabs-container--top {
  position: fixed;
  top: 0;
}

.et-hero-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  color: #000;
  letter-spacing: 0.1rem;
  transition: all 0.5s ease;
  font-size: 0.8rem;
}
.et-hero-tab:hover {
  color: white;
  background: #3dae2b;
  transition: all 0.5s ease;
}

.et-hero-tab-slider {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 6px;
  background: #3dae2b;
  transition: left 0.3s ease;
}

@media (min-width: 800px) {
  .et-hero-tabs h1,
  .et-slide h1 {
    font-size: 3rem;
  }
  .et-hero-tabs h3,
  .et-slide h3 {
    font-size: 1rem;
  }
  .et-hero-tab {
    font-size: 1rem;
  }
}
 .section {
      padding: 60px 10%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .section img {
      max-width: 500px;
      width: 100%;
      border-radius: 5px;
    }

    .section-content {
      flex: 1;
      min-width: 300px;
    }

    .section h2 {
      font-size: 26px;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .section p {
      margin-bottom: 15px;
      font-size: 16px;
      color: #333;
    }

    .btn {
      display: inline-block;
      background: #34a853;
      color: white;
      padding: 12px 20px;
      border-radius: 4px;
      font-weight: bold;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .btn:hover {
      background: #2c8e44;
    }

.hero {
  background: url('https://wallpapers.com/images/hd/vegetable-background-258vnq8v4jkoavw1.jpg') center/cover no-repeat;
  text-align: center;
  padding: 80px 20px;
  color: white;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 20px 40px;
  border-radius: 10px;
}

.hero .brand {
  color: #22c55e;
  font-weight: bold;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: #22c55e;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.features {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  padding: 60px 20px;
  background: #fff;
}

.feature {
  text-align: center;
  max-width: 300px;
}

.feature img {
  width: 60px;
  margin-bottom: 15px;
}

.feature h3 {
  margin-bottom: 10px;
  color: #22c55e;
}

.feature ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature li {
  margin: 5px 0;
  color: #555;
}
/* Contact Section Styles */
:root{
  --c-bg: #0b0f12;
  --c-card: #12181d;
  --c-border: #1f2a34;
  --c-primary: #4ade80;   /* ← Verde suave en lugar de azul */
  --c-text: #e5e7eb;
  --c-subtext: #94a3b8;
  --radius: 18px;
  --shadow: 0 10px 24px rgba(0,0,0,.25);
}

.contact{
  background: linear-gradient(180deg, var(--c-bg) 0%, #0d1318 100%);
  padding: clamp(2.5rem, 4vw, 4rem) 1rem;
  color: var(--c-text);
}

.contact__container{
  max-width: 1100px;
  margin: 0 auto;
}

.contact__header{
  text-align: center;
  margin-bottom: 2rem;
}

.contact__title{
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: .2px;
}

.contact__subtitle{
  margin-top: .5rem;
  color: var(--c-subtext);
  font-size: clamp(.95rem, 1.6vw, 1.05rem);
}

.contact__cards{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px){
  .contact__cards{
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact__card{
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact__card:hover{
  transform: translateY(-2px);
  border-color: rgba(56,189,248,.35);
  box-shadow: 0 16px 28px rgba(0,0,0,.28);
}

.contact__icon{
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(56,189,248,.12);
  color: var(--c-primary);
}

.contact__content{
  display: grid;
  gap: .25rem;
}

.contact__label{
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 0;
}

.contact__text{
  margin: 0;
  color: var(--c-subtext);
  line-height: 1.5;
}

.contact__link{
  width: fit-content;
  display: inline-block;
  margin-top: .15rem;
  font-weight: 600;
  text-decoration: none;     /* ← quita el subrayado */
  color: var(--c-primary);
  border: none;              /* ← quita el borde punteado */
  transition: opacity .2s ease;
}

.contact__link:hover{
  opacity: .85;              /* un pequeño efecto al pasar el mouse */
}

/* Light mode */
@media (prefers-color-scheme: light){
  :root{
    --c-bg: #f8fafc;
    --c-card: #ffffff;
    --c-border: #e5e7eb;
    --c-text: #0f172a;
    --c-subtext: #475569;
    --shadow: 0 8px 18px rgba(15,23,42,.08);
  }
  .contact{
    background: linear-gradient(180deg, var(--c-bg) 0%, #f2f6fb 100%);
  }
}

