SERVICIOS

Colonias Retiradas :root { –azul-cian: #00bcd4; –naranja-fire: #ff5722; –fondo: transparent; –texto: #000; } body { font-family: ‘Segoe UI’, sans-serif; margin: 0; padding: 0; background-color: var(–fondo); color: var(–texto); font-size: 18px; } h2 { text-align: center; font-size: 2.5rem; font-weight: 700; color: #000000; margin: 40px 0; text-transform: uppercase; } .colonias-retiradas { /* Contenedor principal para aislar estilos */ } .colonias-retiradas .colonias-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; padding: 20px; } .colonias-retiradas .columna { background-color: #ffffff; color: #000; padding: 20px 25px; border-radius: 16px; box-shadow: 0 4px 12px rgba(0, 188, 212, 0.1); min-width: 220px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .colonias-retiradas .columna:hover { transform: translateY(-8px); box-shadow: 0 10px 24px rgba(0, 188, 212, 0.25); } .colonias-retiradas ul { list-style: none; padding: 0; margin: 0; } .colonias-retiradas ul li { position: relative; margin-bottom: 12px; padding-left: 24px; font-weight: 500; font-size: 1.1rem; } .colonias-retiradas ul li::before { content: ”; position: absolute; left: 0; top: 50%; width: 8px; height: 8px; background: var(–naranja-fire); border-radius: 50%; transform: translateY(-50%); } @media (max-width: 768px) { .colonias-retiradas .colonias-grid { flex-direction: column; align-items: center; } }

COLONIAS RETIRADAS DE CHILPANCINGO, GUERRERO:

  • INDEPENDENCIA
  • TEPOLCINGO
  • FLORIDA
  • VILLA VICTORIA
  • VILLA INDEPENDENCIA
  • AMPLIACIÓN INDEPENDENCIA
  • DOC. SAUL ALARCON
  • SANTO DOMINGO
  • JUKILA ORIENTE
  • NUEVA ESPERANZA
  • FLORES BAÑOS
  • VILLA DE LAS FLORES
  • POLANCO
  • BOSQUES DEL ORIENTE
  • LOMAS VERDES
  • MOISES CASTILLO
  • PILITAS
  • AGUILAS
  • PROSPERA
  • LOMAS DE MARQUEZ
  • LOMAS DE COCTEPEC
  • SENTIMIENTOS DE LA NACION
  • LA FLOR
  • CAMPOS ELICEOS

PAQUETES

Profesional trabajando

📦 Sobre los paquetes

Todos los precios incluyen IVA

💳 Formas de pago:
Transferencia o depósito bancario.

📄 Tarifas registradas ante el IFT con el número 900496.
Puedes consultarlas en el visor oficial de tarifas del IFT , en la sección “otros”.

/* Contenedor principal con flexbox y espacio entre imagen y texto */ .info-box { display: flex; align-items: center; gap: 30px; /* Espacio entre imagen y texto */ max-width: 700px; margin: 20px auto; padding: 20px; border-radius: 12px; background: #f9f9f9; box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Animación de aparición */ opacity: 0; animation: fadeIn 0.8s ease forwards; } /* Imagen con bordes redondeados */ .image-content img { border-radius: 12px; width: 164px; height: 164px; object-fit: cover; box-shadow: 0 4px 10px rgba(0,188,212,0.3); } /* Título */ .content h2 { font-size: 1.8rem; margin-bottom: 12px; color: #007acc; } /* Texto */ .content p { font-size: 1.1rem; line-height: 1.6; color: #333; } /* Enlaces */ .content a { color: #00cfff; text-decoration: underline; transition: color 0.3s ease; } .content a:hover { color: #007acc; } /* Animación fadeIn */ @keyframes fadeIn { to { opacity: 1; } } /* Responsivo: en pantallas pequeñas, imagen arriba y texto abajo */ @media (max-width: 600px) { .info-box { flex-direction: column; text-align: center; } .image-content { margin-bottom: 20px; } }