/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; 
    background-color: #fafafa;
    color: #333;
    line-height: 1.6;
}


/* ENCABEZADO */
header {
    background: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4); 
}


/* MENÚ */
nav ul.menu {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul.menu > li {
    position: relative;
}

nav ul.menu > li > a {
    text-decoration: none;
    padding: 10px 15px;
    color: #d25502;
    font-weight: 650;
    border-radius: 6px;
    transition: background 0.3s;
}

nav ul.menu > li > a:hover {
    background-color: #e0e0e0;
}

nav ul.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    z-index: 1000;
}

nav ul.dropdown li a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
}

nav ul.dropdown li a:hover {
    background-color: #f2f2f2;
}

.submenu:hover .dropdown {
    display: block;
}

/* Estilo general del menú */
.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #d25502; 
    padding: 10px 15px;
    display: block;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #1b2d2a; /* Cambio sutil al pasar */
}

/* Submenu */
.submenu .dropdown {
    display: none;
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    min-width: 220px;
    z-index: 100;
}

.submenu:hover .dropdown {
    display: block;
}

/* Items dentro del submenu */
.dropdown li {
    list-style: none;
}

.dropdown a {
    padding: 10px 20px;
    color: #26328d;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s ease, padding-left 0.3s ease;
}

.dropdown a:hover {
    background-color: #f4f6ff;
    padding-left: 25px; 
    color: #1b2d2a;
    border-left: 4px solid #d25502; /* barra indicadora */
}


/* SECCIÓN HERO */
.hero {
    background-image: url('imagenes/imagen_principal.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}


.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6); 
       color: #eaeaea;
    
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}


.btn:hover {
    background-color: #fb8500;
    color: white;
}

/* SECCIÓN INFORMATIVA CON IMÁGENES */
.info-paneles {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
}

.info-paneles h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #d25502;
    font-size: 2.5rem;
}

.bloque {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

.bloque:nth-child(even) {
    flex-direction: row-reverse;
}

.imagen-info {
    width: 300px;
    height: 300px;
    object-fit: cover; 
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    
    margin: 0; 
    flex-shrink: 0; 
}


.texto-info {
    flex: 2 1 500px;
    font-size: 25px;
    color: #000000;
    line-height: 1.7;
}
.info-sobre-nosotros h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #e53935; 
    font-size: 2rem;
}


/* PIE DE PÁGINA */

.footer {
    background: #db3d3d;
    color: #ffffff;
    padding: 40px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3,
.footer-col h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.footer-col p {
    margin: 6px 0;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-mapa iframe {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.8;
    background-color: #000;
}

/*seccion videos*/

.videos-promocionales {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #ffe8b8, #f5a647); 
}

.videos-promocionales h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #d25502;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.contenedor-videos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    max-width: 320px;

    opacity: 0;
    transform: translateY(20px);
    animation: aparecer 0.6s ease-out forwards;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-item video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.video-titulo {
    margin-top: 10px;
    font-size: 1.3rem;
    color: #f9450f;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.video-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.video-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
    background-color: #FFF3CD; 
    padding: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.video-logo:hover {
    transform: scale(1.1);
}

/*boton de ver mas */
.btn-video {
    margin-top: 10px;
    background-color: #fff7b7;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 8px;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-video:hover {
    background-color: #fb8500;
    color: #000;
}



/* SECCIÓN DETALLADA DE SERVICIO */


.seccion-servicio h2 {
    font-size: 3rem;
    margin-bottom: 0px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
      text-align: center;
    margin-bottom: 40px;
    color: #c48601;
}

.servicio-bloque {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.servicio-bloque:nth-child(even) {
    flex-direction: row-reverse;
}

.servicio-imagen {
    
     width: 300px;
    height: 300px; 
    object-fit: cover; 
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0; 
    flex-shrink: 0; 
}


.servicio-texto {
    flex: 2 1 500px;
    font-size: 25px;
    color: #555555;
    line-height: 1.7;
}

.servicio-texto ul {
    margin-top: 15px;
    padding-left: 20px;
}

.servicio-texto li {
    margin-bottom: 10px;
    list-style: disc;
}

/* fumigacion estilo */
.fumigacion-destacada {
    background: #e7e5e5;
    padding: 60px 20px;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    position: relative;
    left: 0;
}


.fumigacion-destacada h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #d25502;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.fumigacion-destacada .servicio-bloque {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    justify-content: center;
    padding: 0 40px;
}

.fumigacion-destacada .servicio-imagen {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.fumigacion-destacada .servicio-texto {
    flex: 1 1 500px;
    color: #4a2c0a;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    font-size: 19px;
    line-height: 1.7;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.fumigacion-destacada .oferta {
    margin-top: 20px;
    display: inline-block;
    background-color: #fff7b7;
    color: #000;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* HERO FUMIGACIÓN */
.hero-fumigacion {
    background-image: url('imagenes/fumigacion.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 20px;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 60px;
}

.hero-fumigacion::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.contenido-hero {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-fumigacion h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-fumigacion p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-fumigacion .btn {
    background-color: #f4a261;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}



/* ===== Contacto Hero ===== */
.contacto-hero {
    background: #343434;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.contacto-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contacto-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== Contacto Contenido ===== */
.contacto-contenido {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    background-color: #f7f7f7;
}

.contacto-formulario,
.contacto-info {
    flex: 1 1 400px;
    max-width: 600px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Formulario */
.contacto-formulario form {
    display: flex;
    flex-direction: column;
}

.contacto-formulario label {
    font-weight: 600;
    margin: 12px 0 6px;
}

.contacto-formulario input,
.contacto-formulario textarea,
.contacto-formulario select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.contacto-formulario button {
    margin-top: 20px;
    padding: 12px;
    background-color: #343434;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.contacto-formulario button:hover {
    background-color: #21867a;
}

/* Información de contacto */
.contacto-info h2 {
    margin-bottom: 20px;
    color: #264653;
}

.contacto-info h3 {
    margin-top: 30px;
    color: #343434;
}

.contacto-info p, .contacto-info a {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    text-decoration: none;
}

/* Mapa  */
.contacto-mapa iframe {
    display: block;
    width: 100%;
    border: none;
    margin: 0;
    padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contacto-contenido {
        flex-direction: column;
        padding: 30px 10px;
    }
}

/* Botón enviar */
.btn-enviar {
  background-color: #26328d;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-enviar:hover {
  background-color: #1b2369;
}

/* Página de gracias */
.gracias-hero {
  text-align: center;
  padding: 100px 20px;
}

.gracias-hero h1 {
  font-size: 2.5rem;
  color: #26328d;
  margin-bottom: 15px;
}

.gracias-hero p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 30px;
}

.btn-volver {
  display: inline-block;
  background-color: #26328d;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-volver:hover {
  background-color: #1b2369;
}

/*************************************/
/* Sección 1 */
/* Bloque 1 */
.bloque1-fumigacion {
    padding: 60px 20px;
    background-color: #fff;
}

.bloque1-contenedor {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.bloque1-titulo-fumigacion {
    flex: 1 1 45%;
}

.bloque1-titulo-fumigacion h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    color: #8b2e2e;
}

.bloque1-texto {
    flex: 1 1 45%;
    font-size: 1.3rem;
    line-height: 1.6;
}

.btn-cotizacion-fumigacion {
    display: inline-block;
    margin-top: 15px;
    background-color: #8b2e2e;
    color: #fff;
    padding: 14px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cotizacion:hover {
    background-color: #8b2e2e;
}

.telefono {
    margin-top: 10px;
    font-weight: bold;
}

.telefono a {
    color: #8b2e2e;
    text-decoration: none;
}

/* Bloque 2 */
.bloque2-fumigacion {
    padding: 60px 20px;
    background-color: #fafafa;
}

.bloque2-contenedor {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.bloque2-texto-fumigacion {
    flex: 1 1 50%;
}

.bloque2-texto-fumigacion .subtitulo {
    color: #d50000;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.bloque2-texto-fumigacion h2 {
    font-size: 3.0rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #8b2e2e;
}

.bloque2-texto-fumigacion p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #333;
}

.bloque2-imagen {
    flex: 1 1 45%;
    display: flex; /* Para centrarla si se reduce */
    justify-content: center;
    align-items: center;
}

.bloque2-imagen img {
    width: 100%;
    max-width: 350px; /* <-- Cambia este valor para ajustar el tamaño */
    height: auto; /* Mantiene la proporción */
    border-radius: 6px;
}



/*********************************/
/* Sección de plagas */
.plagas-info {
    padding: 60px 20px;
    background: #fdf7f3;
    text-align: center;
    font-size: 1.5rem;
}

.plagas-info h2 {
    font-size: 2rem;
    color: #8b2e2e;
    margin-bottom: 15px;
}

.plagas-info p {
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #444;
    font-size: 1.5rem;
}

/* Cuadrícula de plagas */
.plagas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Tarjeta de plaga */
.plaga-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.plaga-card:hover {
    transform: translateY(-5px);
}

.plaga-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.plaga-card h3 {
    font-size: 1.4rem;
    color: #e76f51;
    margin: 15px 0 10px 0;
}

.plaga-card p {
    padding: 0 15px 20px;
    color: #555;
    font-size: 0.95rem;
}
/*whatsapp*/
/* Botón flotante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: #25d366;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
    width: 50px;
    height: 50px;
    display: block;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* ==== LIMPIEZA ==== */
.limpieza-poda {
    width: 100%;
    margin: 0;
    padding: 0;
}

.limpieza-bloque {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 20px;
    background-color: #ffffff;
}

.limpieza-titulo {
    flex: 1 1 40%;
    min-width: 300px;
    font-weight: 900;
}

.limpieza-titulo h2 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #26328d;
    
    margin-bottom: 20px;
}
/* Botón limpieza de paneles */
.btn-limpieza {
    background-color: #26328d; /* Azul base */
}

.btn-limpieza:hover {
    background-color: #26328d; /* Azul más oscuro en hover */
}

.limpieza-bloque .telefono {
    margin-top: 10px;
    font-weight: bold;
}

.limpieza-bloque .telefono a {
    color: #26328d;
    text-decoration: none;
}


.limpieza-texto {
    flex: 1 1 60%;
    min-width: 300px;
    font-size: 20px;
    line-height: 1.7;
    color: #1b2d2a;
}

.limpieza-hero {
    position: relative;
    background: url('imagenes/limpieza.jpg') center/cover no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
}

.limpieza-cuadro {
    background-color: rgba(0,0,0,0.5);
    padding: 30px;
    max-width: 450px;
    margin-left: 40px;
    border-radius: 10px;
    color: #fff;
}


.limpieza-cuadro h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}



.boton-whatsapp {
    display: inline-block;
    background-color: #d25502;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.boton-whatsapp:hover {
    background-color: #b04602;
}

/* ==== IMPORTANCIA LIMPIEZA PANELES ==== */
.importancia-limpieza {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.importancia-limpieza h2 {
    font-size: 2rem;
    color: #26328d;
    margin-bottom: 20px;
}

.importancia-limpieza p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 15px;
}

.comparacion-paneles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.panel {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: center;
}


.panel img {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
    border-radius: 8px;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    background-color: #eee;
}
.panel p {
    margin-top: 10px;
    font-weight: bold;
    color: #1b2d2a;
}

/* ==== SECCIÓN PODA Y TALA ==== */
/* ===== PODA Y TALA ===== */

/* Bloque 1 */
.bloque1-poda {
    padding: 60px 20px;
    background-color: #fff;
}

.bloque1-poda .bloque1-contenedor {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.bloque1-poda .bloque1-titulo {
    flex: 1 1 45%;
    
}

.bloque1-poda .bloque1-titulo h1 {
    font-size: 3.5rem;
    font-weight: 1000;
    text-transform: uppercase;
    line-height: 1.1;
    color: #2d572c; 
}

.bloque1-poda .bloque1-texto {
    flex: 1 1 45%;
    font-size: 1.3rem;
    line-height: 1.6;
}


.bloque1-poda .btn-cotizacion {
    display: inline-block;
    margin-top: 15px;
    background-color: #2d572c;
    color: #fff;
    padding: 14px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.bloque1-poda .btn-cotizacion:hover {
    background-color: #1a3b1e;
}

.bloque1-poda .telefono {
    margin-top: 10px;
    font-weight: bold;
}

.bloque1-poda .telefono a {
    color: #2d572c;
    text-decoration: none;
}


/*fumigacion extendida*/

/* ===== FUMIGACIÓN DETALLE ===== */
.fumigacion-detalle {
    width: 100%;
    margin: 0;
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center; /* Centra el título y subtítulo */
}

/* Títulos generales */
.fumigacion-contenido h2 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #8b2e2e;
    margin-bottom: 20px;
}

.fumigacion-contenido p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #1b2d2a;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Galería */
.fumigacion-galeria {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Cada bloque */
.fumigacion-item {
    flex: 1 1 300px;
    max-width: 350px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.fumigacion-item:hover {
    transform: translateY(-8px);
}

/* Imágenes y videos */
.fumigacion-item img,
.fumigacion-item video {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Títulos de los bloques */
.fumigacion-item h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #8b2e2e;
    margin-bottom: 10px;
}

/* Texto de los bloques */
.fumigacion-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #1b2d2a;
}

/* Sección de clientes */
.clientes {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fc;
    font-family: 'Poppins', sans-serif;
}

.clientes-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #26328d;
    margin-bottom: 10px;
}

.clientes-subtitulo {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

/* Grid de clientes */
.clientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cliente-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cliente-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 6px 20px rgba(0,0,0,0.12);
}


.cliente-card img {
    width: 100%;       /* la imagen ocupará el 80% del ancho de la tarjeta */
    height: 160px;     /* mantiene su proporción original */
    margin: 0 auto;   /* centra la imagen */
    display: block;   /* asegura que se centre correctamente */
    object-fit: contain;
}

/* ====== VIDEO HERO ====== */
.video-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-fondo {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-hero .overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
}

.video-hero h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.video-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
}
/*roceria*/
/*********************************/
/* HERO ROCERÍA */
.hero-roceria {
    background-image: url('imagenes/roceria.jpg'); /* Cambia por la imagen que prefieras */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 20px;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 60px;
}

.hero-roceria::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.hero-roceria .contenido-hero {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-roceria h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-roceria p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/*********************************/
/* BLOQUE 1 ROCERÍA */
.bloque1-roceria {
    padding: 60px 20px;
    background-color: #cee5ce;
}

.bloque1-contenedor {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.bloque1-titulo {
    flex: 1 1 45%;
}

.bloque1-titulo h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2e7d32; /* Verde natural */
}

.bloque1-texto {
    flex: 1 1 50%;
}

.bloque1-texto p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
}

.bloque1-texto .btn-cotizacion {
    display: inline-block;
    margin-top: 15px;
    background-color: #2e7d32;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}

.bloque1-texto .btn-cotizacion:hover {
    background-color: #1b5e20;
}

.bloque1-texto .telefono {
    margin-top: 10px;
    font-size: 1.1rem;
}

/*********************************/
/* BLOQUE 2 ROCERÍA */
.bloque2-roceria {
    padding: 60px 20px;
    background-color: #fafafa;
}

.bloque2-contenedor {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.bloque2-texto {
    flex: 1 1 50%;
}

.bloque2-texto h2 {
    font-size: 3.0rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1b5e20;
}

.bloque2-texto p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #444;
}

.bloque2-imagen {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bloque2-imagen img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/*********************************/
/* DETALLE ROCERÍA */
.roceria-detalle {
    padding: 60px 20px;
    background: #dadada;
    text-align: center;
}

.roceria-detalle h2 {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 15px;
}

.roceria-detalle p {
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #444;
    font-size: 1.2rem;
}

/* Reutilizo fumigacion-galeria */
.roceria-item h3 {
    color: #2e7d32; /* Verde para diferenciar de fumigación */
}

.roceria-galeria {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Cada bloque */
.roceria-item {
    flex: 1 1 300px;
    max-width: 350px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.roceria-item:hover {
    transform: translateY(-8px);
}

/* Imágenes y videos */
.roceria-item img,
.roceria-item video {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}










