/* Tipografía Graphik */
@font-face {
    font-family: 'Graphik';
    src: url('fonts/Graphik-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('fonts/Graphik-RegularItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Graphik';
    src: url('fonts/Graphik-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Graphik';
    src: url('fonts/Graphik-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}
:root {
    --black: #000000;
    --white: #FFFFFF;
    --light-gray: #DEE6E6;
    --medium-gray: #B9CACA;
    --off-white: #F3F6F6;
    --dark-gray: #7C8687;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Graphik', sans-serif;
    color: var(--black);
    background-color: var(--white);
}
a, a:visited {
	color: var(--black);
	text-decoration: none;
	font-weight: bold;
}
a:hover, a:target {
	text-decoration: underline;
}
img {width: 100%; height: auto;}
header {
    width: 100%;
    padding: 0;
    position: relative;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    width: 100%;
    max-width: 1410px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Botón de menú hamburguesa, oculto en desktop */
.menu-toggle {
    display: none;
    margin-right: 20px;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    width: 30px;
    height: 30px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: absolute;
}
.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px; /* Espaciado central */
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}
.menu-toggle.close span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.close span:nth-child(2) {
    opacity: 0; /* Oculta la línea central */
}

.menu-toggle.close span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}
.header-logo img {
    width: 639px;
}
.social-links-header {
	position: absolute;
	right: 240px;
	top: 10px;
	display: flex; 
	flex-direction: row;
    gap: 10px;
}
.btn-whatsapp {
    position: fixed;
    top: 0;
    right: calc(50vw - 720px);
    z-index: 100;
}
.btn-whatsapp a, .btn-whatsapp a:visited{
    width: 230px;
    color: var(--black);
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 0 0 4px 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    background: #25D366;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,0.19);

  }
  .btn-whatsapp a .btn-icon {padding-right: 15px;}
  .btn-whatsapp a:hover,  .btn-whatsapp a:target {
    background-color: #128C7E;  /* Color más oscuro al pasar el ratón */
    color: #fff;
    box-shadow: none;
  }
  .btn-whatsapp a:hover img,  .btn-whatsapp a:target img {
    filter: invert(100%) brightness(100%);
  } 
  
nav {
    width: 100%;
    background-color: var(--dark-gray);
    text-align: right;
}

.menu {
	width: 100%;
    max-width: 1410px;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    padding:  0;
    margin: 0 auto;
}

.menu li {
    padding: 10px 20px;
}

.menu li a, .menu li a:visited {
    color: var(--white);
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
    padding: 10px 15px;
    border-bottom: 4px solid transparent;
    margin-top: -4px;
}
.menu li a:hover, .menu li a:target {
    border-bottom: 4px solid var(--white);
}

.slideshow {list-style: none; margin: 0; padding: 0;}
.slideshow li span { 
    width: 100%;
    height: 750px;
    position: absolute;
    top: 162px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
	 
    -webkit-animation: imageAnimation 54s linear infinite 0s;
    -moz-animation: imageAnimation 54s linear infinite 0s;
    -o-animation: imageAnimation 54s linear infinite 0s;
    -ms-animation: imageAnimation 54s linear infinite 0s;
    animation: imageAnimation 54s linear infinite 0s; 
}

.slideshow li:nth-child(1) span { 
    background-image: url(../img/1.jpg);
}
.slideshow li:nth-child(2) span { 
    background-image: url(../img/2.jpg);
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s; 
}
.slideshow li:nth-child(3) span { 
    background-image: url(../img/3.jpg);
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s; 
}
.slideshow li:nth-child(4) span { 
    background-image: url(../img/4.jpg);
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s; 
}
.slideshow li:nth-child(5) span { 
    background-image: url(../img/5.jpg);
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s; 
}

.slideshow li:nth-child(6) span { 
    background-image: url(../img/6.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s; 
}
.slideshow li:nth-child(7) span { 
    background-image: url(../img/7.jpg);
    -webkit-animation-delay: 36s;
    -moz-animation-delay: 36s;
    -o-animation-delay: 36s;
    -ms-animation-delay: 36s;
    animation-delay: 36s; 
}
.slideshow li:nth-child(8) span { 
    background-image: url(../img/8.jpg);
    -webkit-animation-delay: 42s;
    -moz-animation-delay: 42s;
    -o-animation-delay: 42s;
    -ms-animation-delay: 42s;
    animation-delay: 42s; 
}
.slideshow li:nth-child(9) span { 
    background-image: url(../img/9.jpg);
    -webkit-animation-delay: 48s;
    -moz-animation-delay: 48s;
    -o-animation-delay: 48s;
    -ms-animation-delay: 48s;
    animation-delay: 48s; 
}

.slideshow li:nth-child(10) span { 
    background-image: url(../img/10.jpg);
    -webkit-animation-delay: 54s;
    -moz-animation-delay: 54s;
    -o-animation-delay: 54s;
    -ms-animation-delay: 54s;
    animation-delay: 54s; 
}
/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation { 
    0% { opacity: 0;
    -webkit-animation-timing-function: ease-in; }
    8% { opacity: 1;
         -webkit-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
@-moz-keyframes imageAnimation { 
    0% { opacity: 0;
    -moz-animation-timing-function: ease-in; }
    8% { opacity: 1;
         -moz-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
@-o-keyframes imageAnimation { 
    0% { opacity: 0;
    -o-animation-timing-function: ease-in; }
    8% { opacity: 1;
         -o-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
@-ms-keyframes imageAnimation { 
    0% { opacity: 0;
    -ms-animation-timing-function: ease-in; }
    8% { opacity: 1;
         -ms-animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}
@keyframes imageAnimation { 
    0% { opacity: 0;
    animation-timing-function: ease-in; }
    8% { opacity: 1;
         animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }
}

/* Show at least something when animations not supported */
.no-cssanimations .slideshow li span{
	opacity: 1;
}
#hero h1 {
	position: absolute;
	font-size: 120px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-transform: uppercase;
	text-shadow: -10px -10px 40px rgba(0,0,0,0.50);
	top: 808px;
	left: calc(50vw - 700px);
}
/* Contenedor centrado */
.container {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 20px; 
}
/* Sección About */
/* Sección About */
#about {
    background-color: var(--white);
    color: var(--black);
    padding: 20px 0;
    margin-top: 780px;
}

#about .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.about-title {
    flex: 1;
}

.about-content {
    flex: 2;
}

.about-button {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

/* Estilos de texto */
#about h2 {
    font-size: 28px;
    margin: 0 0 20px;
}

#about p {
    font-size: 20px;
    margin: 0 0 10px;
}

/* Botón */
.about-button a {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
    padding: 15px 20px;
    border-radius: 6px;
    text-decoration: none;
}

/* Adaptación para tabletas y móviles */
@media (max-width: 1024px) {
    #about .container {
        flex-direction: column;
        gap: 15px;
    }

    .about-title, .about-content, .about-button {
        width: 100%;
        text-align: center;
    }

    .about-button {
        justify-content: center;
    }
}


/* Sección de Servicios */
#services {
    background-color: var(--light-gray); /* Fondo gris */
    padding: 60px 0;
}

#services .container {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Título de la Sección */
#services h2 {
    font-size: 48px;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 30px;
}

/* Diseño de las Tarjetas */
#services .service-card {
    background-color: var(--white);
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

#services .service-card:hover {
    transform: translateY(-5px); /* Efecto hover */
}

#services .service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

#services .service-card h3 {
    font-size: 18px;
    color: var(--black);
    font-weight: bold;
    text-align:left;
    margin: 0 20px 10px;
    min-height: 43px;
}
#services a .service-card, #services a:visited .service-card {
	text-decoration: none;
}
/* Disposición de las Tarjetas en 4 Columnas */
#services .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}



 #info {
	  padding: 60px 0;
 }
  #info h2 {
	  font-size: 32px;
	  text-align: center;
	  padding-bottom: 40px;
  }
#news {
    background: #000;color: #fff;
	padding: 60px 0;
}
#news h2 {
	font-size: 32px;
	padding-bottom: 60px;
}
#news .btn {
	margin: 80px auto 40px;
	text-align: center;
}
#news .btn a{
	  background-color: var(--white);
	  color: var(--black);
	  font-size: 18px;
	  font-weight: bold;
	  padding: 15px 20px;
	  border-radius: 6px;
	  text-decoration: none;
}
.ig-instagram-feed {
  background-color: var(--black);
}
.ig-instagram-items {gap: 30px;}
/* Estilo del Acordeón */
.accordion-item {
    background-color: #F3F6F6;
    border: 1px solid #B9CACA;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}


/* Estilo del Título del Acordeón */
.accordion-item h3 {
	position: relative;
    padding: 15px;
    font-size: 20px;
    color: var(--black);
    margin: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover y Estado Abierto */
.accordion-item h3:hover,
.accordion-item.open h3 {
    background-color: #E9F1F1;
}
.accordion-item h3::after {
	content: '▼';
	float: right;
}
.accordion-item.open h3::after {
	content: '▲';
}
/* Contenido del Acordeón (oculto por defecto) */
.accordion-content {
    display: none; /* Oculto cuando está cerrado */
    padding: 20px;
    background-color: #E9F1F1; /* Fondo en estado abierto */
}

/* Estilo de las Fichas de Cultivo */
.content-cultivo {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.content-cultivo .service-card {
    background-color: var(--white);
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
}
.content-cultivo .service-card:hover {
    transform: translateY(-5px); /* Efecto hover */
}
.content-cultivo .service-card img {
    width: 100%;
    height: auto;
}

.content-cultivo .service-card h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--black);
    margin-top: 10px;
    height: 40px;
}
.content-cultivo a, .content-cultivo a:visited, .content-cultivo a:hover, .content-cultivo a:target {
	text-decoration: none;
}
/* Estilo de Documentación */
.content-normativa .row {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #B9CACA;
}

.content-normativa .row:last-child {
    border-bottom: none;
}

.content-normativa img {
    width: 40px;
    margin-right: 15px;
}

.content-normativa .text , .content-normativa .text a:visited {
    font-weight: bold;
    color: var(--black);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 5px;
}

.content-normativa .text a:hover, .content-normativa .text a:target {
    text-decoration: underline;
}

.content-normativa .text p {
    font-size: 16px;
    color: var(--black);
    margin: 0;
}

/* JavaScript para el efecto de acordeón */
.accordion-item.open .accordion-content {
    display: block;
}

/* Tabs Sidebar */
.tabs-container {
    display: flex;
}
.tabs {
    min-width: 220px;
    display: flex;
    flex-direction: column;
    padding-right: 30px;
}
.tabs button {
    padding: 10px;
    border: none;
    text-align: left;
    background-color: transparent;
    cursor: pointer;
    font-size: 16px;
    color: var(--black);
    border-bottom: 2px solid transparent;
    height: 48px;
}
.tabs button.active, .tabs button:hover {
    font-weight: bold;
    border-bottom: 2px solid var(--black);
     height: 48px;
}

/* Tab Content */
.tab-content {
    flex-grow: 1;
    padding: 20px;
}
.content {
    display: none; /* Hidden by default */
}
.content.active {
    display: block;
}

/* List */
.list {
    list-style: none;
    padding: 0;
}
.list li {
    margin-bottom: 10px;
}
.list li a {
    text-decoration: none;
    color: #000;
}
.tab-content .row {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    gap: 30px;
}
.tab-content .row .poster {max-width: 200px;}

/* List Item Styles */
.list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0; /* Línea separadora */
}

.list-item:last-child {
    border-bottom: none; /* Quitar línea en el último elemento */
}

.icon {
    width: 64px;
    object-fit: cover;
    flex-shrink: 0; /* Evita que el icono cambie de tamaño */
}

.list-item-content {
    flex-grow: 1;
    font-family: Arial, sans-serif;
}

.title {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #007BFF; /* Color azul para enlaces */
    text-decoration: none;
    margin-bottom: 5px;
}

.title:hover {
    text-decoration: underline; /* Subrayado al pasar el cursor */
}

.date {
    display: inline-block;
    font-size: 12px;
    color: #888; /* Color gris para la fecha */
    margin-bottom: 8px;
}
.author {
    display: inline-block;
    font-size: 12px;
    color: #000; /* Color gris para la fecha */
    margin-bottom: 8px;
}
.description {
    font-size: 14px;
    color: #333; /* Color gris oscuro para el párrafo */
    line-height: 1.5;
}

/* Pagination */
.pagination {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.pagination button {
    padding: 5px 10px;
    border: none;
    background-color: #DEE6E6;
    cursor: pointer;
    border-radius: 4px;
}
.pagination button:hover {
    background-color: #B9CACA;
}

#contacto {
    background: #DEE6E6;
    padding: 60px 0;
}
#contacto h2 {
	font-size: 32px;
	padding: 60px 0;
}
.contact-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
}

.accordion-column {
    flex: 1;
    text-align: left;
}

.contact-info {
    flex: 0.3;
    text-align: left;
}
.contact-info h3 {padding: 30px 0;}
.map-container {
	-webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grey;
}
.map-container iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

.accordion-column .accordion-item h3 {
    cursor: pointer;
    background-color: #F3F6F6;
    border: #B9CACA;
    color: #000;
    padding: 15px;
    margin: 0;
}

.accordion-column .accordion-content {
    display: none;
    background-color: #FFFFFF;
    padding: 10px;
}
.responsive-table {
  width: 100%; 
  border-collapse: collapse; 
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px; 
    text-align: left;
}
table th {
    font-size: 22px;
    font-weight: normal; 
    padding: 10px;
}
table td {
    font-size: 16px;
    padding: 8px;
    max-width: 250px;
    min-width: 150px;
}
table a {
    font-weight: bold; 
    text-decoration: underline; 
    color: inherit; 
}
table a:hover {
    text-decoration: none;
}

.full-width-image {
	background: url(../img/fullwidth.jpg) no-repeat center center fixed;
  background-size: cover;
  height: 600px;
  overflow: hidden;
  filter: grayscale(100%);
    transition: filter 1s ease-in-out;
}
.full-width-image:hover {
    filter: grayscale(0%);
}

footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
}

.footer-container {
    max-width: 1410px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 50px 30px 20px;
    gap: 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
}



.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.social-links div {
	display: flex;
    flex-direction: row;
    gap: 10px;
}
.social-links a, .social-links a:visited {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}
.social-links a:hover, .social-links a:target {
    color: #fff;
    text-decoration: underline;
}
.social-links img {
	max-width: 24px;
	margin-right: 8px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
}

.legal-links a {
	position: relative;
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    margin-right: 15px;
}

.legal-links a:hover {
    text-decoration: underline;
}
/* Agregar el separador | entre los enlaces */
.legal-links a:not(:last-child)::after {
    content: "|";
    color: #fff;
    margin-left: 10px;
    position: absolute;
    right: -15px;
}
.footer-bottom p {
    margin: 0;
}

@media screen and (max-width: 1450px) {
	#hero h1 {
	  left: 20px;
	}
	.btn-whatsapp {
	  right: 20px;
	}
	.social-links-header {
		right: 260px;
	}
}
@media screen and  (max-width: 1120px){
	.menu li {
	  padding: 10px 10px;
	}
}
@media screen and (max-width: 1024px){
	.menu li {
	  padding: 10px 0;
	}
	#services .container {
        grid-template-columns: repeat(2, 1fr); /* Dos columnas en tabletas */
    }

    #services h2 {
        font-size: 36px;
    }
}
@media screen and (max-width: 990px){
	.header-logo img, .footer-logo img {
	  width: 400px;
	}
	.icon {
	  width: 48px;
	}
	.btn-whatsapp a, .btn-whatsapp a:visited {
	  font-size: 14px;
	  
	}
	.social-links-header {
		right: 235px;
		top: 25px;
	}
	.social-links-header img {
		width: 24px !important;
		right: 240px;
		top: 25px;
	}
	.menu li a, .menu li a:visited {
	  font-size: 18px;
	  padding: 10px 10px;
	}
	.slideshow li span {height: 460px; top: 118px;}
	#hero h1 {
	  top: 474px;
	}
	#about {
	  margin-top: 480px;
	}
	.content-cultivo {
	  grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (max-width: 768px) {
    /* Mostrar el botón hamburguesa en móvil y ocultar menú */
    .menu-toggle {
        display: flex;
    }

    .menu {
        display: none;
        flex-direction: column;
        background-color: var(--dark-gray);
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        z-index: 10;
    }

    /* Mostrar menú cuando esté activo */
    .menu.show {
        display: flex;
    }

    .menu li {
        text-align: center;
        padding: 15px;
    }
    .btn-whatsapp {
	    right: 55px;
	  }
    .btn-whatsapp a, .btn-whatsapp a:visited {
	    padding: 10px 10px;
	    width: 170px;
    }
    .slideshow li span {
	    top: 72px;
	  }
	  #hero h1 {
	    top: 452px;
	    font-size: 90px;
	  }
	  #about h2 {font-size: 24px;}
	  #about p {
		  font-size: 18px;
		}
	  #services h2, #info h2, #contacto h2 {
	    font-size: 28px;
	  }
	  #services .service-card h3, .content-cultivo .service-card h4 {font-size: 16px;}
	  .contact-container {
		  flex-direction: column;
		}
	.contact-info, .accordion-column {
	  flex: 1;
	  width: 100%;
	}
	.tabs {
	  min-width: 120px;
	  padding-right: 20px;
	}
	.tabs button {font-size: 14px}

}

@media screen and (max-width: 660px) {
	.btn-whatsapp {
		 transform: rotate(90deg);
		  right: -50px;
		  top: 20%;
		  z-index: 10;
	 }
	 .social-links-header {
	    right: 55px;
	    top: 12px;
	  }
	 .header-logo img {
	    width: 300px;
	  }
	  .menu {
		  top: 58px;
	  }
	  .slideshow li span {
	    top: 55px;
	    height: 300px;
	  }
	  #hero h1 {
	    top: 310px;
	    font-size: 50px;
	  }
	  #about {
	  	margin-top: 310px;
	  }
	#services .container {
        grid-template-columns: 2fr; /* Una columna en móviles */
	 }
	 .content-cultivo {
	    grid-template-columns: repeat(2, 1fr);
	  }
	  .tabs-container {
	  flex-direction: column;
	}
	.tabs {
	  min-width: 100%;
	  flex-direction: row;
	}
	.ig-instagram-columns-3 {
	  grid-template-columns: repeat(1,minmax(0,1fr));
	}
}

@media screen and (max-width: 500px) {
	 
	  #about h2, #services h2, #info h2, #contacto h2 {
	    font-size: 20px;
	    margin-bottom: 10px;
	  }
	  #about p {
	    font-size: 16px;
	  }
	  .about-button a {
		  font-size: 18px;
		  padding: 15px;
		}
	#services .service-card h3, .content-cultivo .service-card h4 {
    	font-size: 14px;
  }
  .footer-top {
	  flex-direction: column;
	}
	.footer-logo img {
		width: 100%;
		margin-bottom: 30px;
	}
	.accordion-content {
		padding: 5px;
	}
	.tabs {padding-right: 0;}
	.tabs button {
		padding: 5px;
		font-size: 13px;
		text-align: center;
	}
	.full-width-image {
	  background-attachment: scroll;
	}
	table td {
	  font-size: 14px;
	}
}
@media screen and (max-width: 400px)  {
	.content-cultivo {
    grid-template-columns: repeat(1, 1fr);
  }
  .responsive-table,
  .responsive-table thead,
  .responsive-table tbody,
  .responsive-table th,
  .responsive-table td,
  .responsive-table tr {
    display: block; /* Convierte todo en bloques */
    width: 100%; /* Cada elemento ocupa el ancho completo */
  }

  .responsive-table thead {
    display: none; /* Oculta el encabezado en móviles */
  }
  .responsive-table td {
    display: flex; /* Permite añadir etiquetas */
    justify-content: space-between; /* Espaciado entre título y contenido */
    align-items: center;
  }
  .footer-bottom {
	  flex-direction: column;
	}
	.footer-container {
		padding: 30px 10px 10px;
	}
	.footer-bottom .legal-links {
		text-align: center;
		font-size: 12px;
		padding-bottom: 30px;
	}
	.legal-links a {
		margin: 0 10px 0 5px;
	}
	.legal-links a:not(:last-child)::after {
		margin-left: 10px;
	  right: -10px;
	}
}