
body { font-family: Arial, sans-serif; margin: 0; padding: 0; line-height: 1.6; color: #333; background: #fff; }
header, main, footer { max-width: 960px; margin: 0 auto; padding: 7px 17px; }
footer {
    text-align: center;
    padding: 30px;
    background: #f0f0f0;
    font-size: 0.9em;
    border-top: 1px solid #ddd;
}
h1 { text-align: center; font-size: 1.8em; margin: 6px 0; }
img { max-width: 100%; height: auto; display: block; margin: 15px auto; border-radius: 10px; }

.hero {  position: relative; text-align: center; margin: 4px 0; }
/* Contenedor de badges */


/* Contenedor de badges sobre la imagen */
.badges-above {
    text-align: center;   /* centra horizontalmente */
    margin-bottom: 10px;  /* separa los badges de la imagen */
    display: flex;
    justify-content: center;
    gap: 10px;           /* espacio entre badges */
}

/* Estilos generales de badge */
.badges-above span {
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: bolder;
    color: #000;
    font-size: 0.9em;
    display: inline-block;
}

/* Badge Verificado */
.badge-verificado {
    background-color: #1EFF00;  /* verde */
}

/* Badge Destacado */
.badge-destacado {
    background-color: #FFE600;  /* ocre */
}




.hero img { border-radius: 15px; max-height: 400px; object-fit: cover; }



/* Contenedor de la imagen principal con overlay */
.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;

}

/* Overlay para tapar logos o marcas */
.image-container .overlay {
    position: absolute;
    top: 50%;           /* vertical centro */
    left: 50%;          /* horizontal centro */
    transform: translate(-50%, -50%); /* centra exacto */
    width: 50%;         /* ajusta según necesites */
    pointer-events: none; /* no bloquea clicks */
}


.contacto { text-align: center; background: #f0f0f0; padding: 25px; border-radius: 10px; margin: 20px 0; }
.phone { font-size: 2em; font-weight: bold; color: #000000; margin: 15px 0; }
.phone a { text-decoration: none; color: inherit; }
.info { text-align: center; font-size: 1.1em; }
.descripcion { max-width: 800px; margin: 30px auto; text-align: center; font-size: 1.1em; }
.servicios { list-style: none; padding: 0; margin: 20px 0; font-size: 1.1em; text-align: left;}
.servicios li { margin: 8px 12px; }
.servicios li::before { content: "✔️"; margin-right: 8px; }

.galeria { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 30px 0; }
.galeria img { flex: 1 1 calc(50% - 10px); max-width: 400px; }
/* H2 de galería centrado sin icono */
.galeria h2 {
    width: 100%; /* ocupa toda la fila */
    text-align: center; 
    display: block;
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #000;
}




.relacionados {
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
    font-size: 1.05em;
    line-height: 1.6;
}

.relacionados p {
    margin: 0;
}

.relacionados a {
    display: inline;              /* deja de ser botón */
    margin: 0;
    padding: 0;
    background: none;
    border-radius: 0;
    color: #0066cc;
    font-weight: 600;
    text-decoration: underline;
}

.relacionados a:hover {
    color: #004999;
    text-decoration: none;
}


.phone-buttons a.telegram-btn,
.fixed-buttons a.telegram-btn {
    background-color: #0088cc; /* Azul Telegram */
}


.phone-buttons {
    display: none; 
    margin-top: 15px;
    gap: 10px;
    justify-content: center;
}
.phone-buttons a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.phone-buttons a.call-btn { background-color: #0072C6; }
.phone-buttons a.whatsapp-btn { background-color: #058518; }

@media (min-width: 769px) {
    .phone-buttons { display: flex; }
}

.fixed-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    gap: 10px;
}
.fixed-buttons a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 12px 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    max-width: calc(50% - 5px);
    box-sizing: border-box;
}
.fixed-buttons a.call-btn { background: #0072C6; }
.fixed-buttons a.whatsapp-btn { background: #058518; }

/* Tamaño uniforme para todos los SVG dentro de botones */
.phone-buttons svg,
.fixed-buttons svg,
.servicios-title svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
}

/* Títulos con icono */
.servicios-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #000000;
}







.breadcrumb {
  font-size: 0.9em;
  margin: 10px 0 15px;
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.breadcrumb li::after {
  content: "›";
  margin-left: 6px;
  color: #999;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  color: #666;
  text-decoration: underline;
  color: #0066cc;
  display: inline;

}

.breadcrumb a:hover {
  text-decoration: underline;
}


/* Responsive */
@media (max-width: 768px) {
    .fixed-buttons { display: flex; }
    .galeria img { flex: 1 1 100%; }
    h1 { font-size: 1.2em; }
    .phone { font-size: 1.8em; }
}
