/* Estilos compartidos para plagas */
.banner-plaga {
    position: relative;
    width: 80%;
    height: 300px;
    background-color: #F0F3F0;
    overflow: hidden;
    margin: 0 auto 40px auto;
    border-left: 24px solid #293b15;
 }
 
 .banner-content {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 50%;
 }
 
 .banner-content h1 {
    font-size: 48px;
    color: #293b15;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
 }
 
 .banner-content h2 {
    font-size: 32px;
    color: #8fac75;
    font-family: 'Montserrat', sans-serif;
 }
 
 .banner-imagen {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%;
    width: auto;
    object-fit: contain;
 }
 
 .contenido-plaga {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
 }
 
 /* Estilos para secciones de plaga */
 section {
    margin-bottom: 40px;
 }
 
 section h2 {
    color: #2C3E2D;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: bold;
 }
 
 .generalidades p {
    line-height: 1.8;
    margin-bottom: 20px;
 }
 
 .ciclo-vida {
    background-color: #f4f4f4;
    padding: 30px;
 }
 
 .ciclo-vida-contenido {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
 }
 
 .ciclo-imagen-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
 }
 
 .ciclo-imagen {
    width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
 }
 
 .ciclo-descripcion {
    width: 100%;
 }
 
 .ciclo-descripcion h3,
 .resto-descripcion h3 {
    color: #2C3E2D;
    font-size: 1.3em;
    font-weight: 700;
    margin: 20px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #8fac75;
 }
 
 .ciclo-descripcion p,
 .resto-descripcion p {
    line-height: 1.6;
    margin-bottom: 15px;
 }
 
 .resto-descripcion {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
 }
 
 /* Estilos para daños */
 .daños-header {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
 }
 
 .daños-contenedor {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    width: 100%;
 }
 
 .daños-imagen {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
 }
 
 .perforacion-container p {
    margin: 15px 0;
    line-height: 1.6;
 }
 
 .daño-titulo {
    background-color: #2C3E2D;
    color: white;
    padding: 10px;
    margin: 20px 0;
    font-weight: bold;
 }
 
 /* Estilos para manejo integrado */
 .manejo-integrado {
    background-color: #f4f4f4;
    padding: 20px;
    margin-bottom: 10px;
 }
 
 .manejo-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
 }
 
 .manejo-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
 }
 
 .manejo-item h3 {
    color: #2C3E2D;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: bold;
 }
 
 .manejo-item ul {
    list-style: none;
    padding: 0;
 }
 
 .manejo-item li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
 }
 
 .manejo-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2C3E2D;
 }
 
 /* Estilos para monitoreo */
 .monitoreo {
    background-color: #f4f4f4;
    padding: 20px;
    margin-top: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
 }
 
 .monitoreo-contenido {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    align-items: start;
    padding: 0 20px;
 }
 
 .monitoreo-icon {
    width: 200px;
    height: auto;
 }
 
 .monitoreo-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
 }
 
 .monitoreo-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
 }
 
 .monitoreo-item h3 {
    color: #2C3E2D;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: bold;
 }
 
 .monitoreo-item ul {
    list-style: none;
    padding: 0;
 }
 
 .monitoreo-item li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
 }
 
 .monitoreo-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2C3E2D;
 }
 
 /* Estilos para la página de equipo */
 .banner-equipo {
     position: relative;
     width: 80%;
     height: 400px;
     overflow: hidden;
     margin: 0 auto 60px auto;
     background-color: #f0f3f0;
     border-left: 24px solid #293b15;
 }
 
 .banner-imagen-container {
     width: 40%;
     height: 100%;
     position: relative;
     float: left;
 }
 
 .banner-imagen-equipo {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }
 
 .banner-titulo {
     position: absolute;
     right: 0;
     top: 0;
     width: 60%;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding-left: 60px;
 }
 
 .banner-titulo h1 {
     font-size: 64px;
     color: #293b15;
     font-weight: bold;
     margin: 0;
     line-height: 1;
     font-family: 'Montserrat', sans-serif;
 }
 
 .banner-titulo h2 {
     font-size: 48px;
     color: #8fac75;
     margin: 0;
     font-family: 'Montserrat', sans-serif;
 }
 
 .contenido-equipo {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }
 
 .equipo-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 40px;
     margin-bottom: 60px;
 }
 
 .miembro-card {
     background: #ffffff;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 4px 8px rgba(0,0,0,0.1);
     transition: transform 0.3s ease;
 }
 
 .miembro-card:hover {
     transform: translateY(-5px);
 }
 
 .miembro-imagen {
    width: 70%;
    padding-top: 70%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
 
 .perfil-imagen {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     filter: grayscale(100%);
 }
 
 .miembro-info {
     padding: 24px;
     text-align: center;
 }
 
 .miembro-info h3 {
     font-size: 24px;
     color: #293b15;
     margin: 0;
     font-weight: bold;
     font-family: 'Montserrat', sans-serif;
 }
 
 .miembro-info h4 {
     font-size: 24px;
     color: #293b15;
     margin: 0 0 16px 0;
     font-family: 'Montserrat', sans-serif;
 }
 
 .cargo {
     font-size: 16px;
     color: #4a4a4a;
     margin: 0 0 8px 0;
     line-height: 1.4;
 }
 
 .email {
     font-size: 14px;
     color: #8fac75;
     margin: 0 0 16px 0;
 }
 
 .profesion {
     display: inline-block;
     padding: 8px 16px;
     background-color: #f0f3f0;
     color: #293b15;
     border: 1px solid #8fac75;
     border-radius: 4px;
     font-size: 14px;
     font-weight: 500;
 }
 
 /* Estilos para la página de contacto */
 .banner-contacto {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #F0F3F0;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 24px solid #293b15;
    padding-left: 5%;
 }
 
 .banner-contacto h1 {
    font-size: 64px;
    color: #293b15;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
 }
 
 .banner-subtitulo {
    font-size: 32px;
    color: #8fac75;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
 }
 
 .formulario-contacto {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
 }
 
 .form-grupo {
    margin-bottom: 25px;
 }
 
 .form-grupo label {
    display: block;
    color: #2C3E2D;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
 }
 
 .form-grupo input,
 .form-grupo textarea {
    width: 100%;
    padding: 15px;
    background-color: #f2f2f2;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
 }
 
 .form-grupo textarea {
    resize: vertical;
    min-height: 150px;
 }
 
 .btn-enviar {
    background-color: #4F734F;
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Montserrat', sans-serif;
 }
 
 .btn-enviar:hover {
    background-color: #3c5a3c;
 }
 
 /* Estilos responsive */
 @media (max-width: 1024px) {
     .equipo-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }
 
 @media (max-width: 768px) {
     .banner-plaga {
         width: 100%;
     }
     
     .banner-content h1 {
         font-size: 36px;
     }
     
     .banner-content h2 {
         font-size: 28px;
     }
     
     .ciclo-imagen-container {
         grid-template-columns: 1fr;
     }
     
     .ciclo-imagen {
         width: 100%;
         max-width: 400px;
         margin: 0 auto;
     }
 
     .daños-contenedor {
         grid-template-columns: 1fr;
     }
     
     .daños-imagen {
         max-width: 100%;
         margin-bottom: 20px;
     }
 
     .manejo-lista {
         grid-template-columns: 1fr;
     }
 
     .monitoreo-contenido {
         grid-template-columns: 1fr;
     }
     
     .monitoreo-icon {
         width: 150px;
         margin: 0 auto;
     }
     
     .monitoreo-lista {
         grid-template-columns: 1fr;
     }
 
     .banner-equipo {
         width: 100%;
         height: 300px;
     }
 
     .banner-imagen-container {
         width: 100%;
         height: 100%;
         position: absolute;
         opacity: 0.2;
     }
 
     .banner-titulo {
         width: 100%;
         text-align: center;
         padding: 0 20px;
     }
 
     .banner-titulo h1 {
         font-size: 48px;
     }
 
     .banner-titulo h2 {
         font-size: 36px;
     }
 
     .equipo-grid {
         grid-template-columns: 1fr;
         gap: 30px;
     }
 }
 
 @media (max-width: 480px) {
     .banner-titulo h1 {
         font-size: 36px;
     }
 
     .banner-titulo h2 {
         font-size: 24px;
     }
 
     .miembro-info h3,
     .miembro-info h4 {
         font-size: 20px;
     }
 
     .banner-contacto {
         height: 200px;
         padding: 20px 5%;
     }
 
     .banner-contacto h1 {
         font-size: 36px;
     }
 
     .banner-subtitulo {
         font-size: 18px;
     }
 
     .formulario-contacto {
         padding: 10px;
     }
 
     .form-grupo label {
         font-size: 16px;
     }
 
     .form-grupo input,
     .form-grupo textarea {
         padding: 12px;
         font-size: 14px;
     }
 
     .btn-enviar {
         padding: 12px;
         font-size: 16px;
     }
 }