body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
    margin: 0;
    padding: 0;
}
/* CONTENEDOR GENERAL */
.servicio-detalle {
    padding: 60px 20px;
}

/* BLOQUE CON IMAGEN */
.fondo-titulo-listado {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 60px 30px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;

    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* OVERLAY OSCURO PARA LEER */
.fondo-titulo-listado::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 20px;
    z-index: 1;
}

/* CONTENIDO ARRIBA */
.fondo-titulo-listado > * {
    position: relative;
    z-index: 2;
}

/* TÍTULO */
.fondo-titulo-listado h1 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 35px;
    font-size: 2rem;
}

/* CAJA DE LA LISTA (SEPARADA DEL FONDO) */
.contenedor-lista-trabajos {
    background: rgba(20, 20, 20, 0.85);
    padding: 30px;
    border-radius: 16px;

    max-width: 520px;
    margin: 0 auto;

    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* LISTA */
.lista-trabajos {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lista-trabajos li {
    display: flex;
    align-items: center;

    margin-bottom: 12px;
    font-size: 1rem;
    color: #f1f1f1;
}

/* ICONO */
.lista-trabajos i {
    color: #1e90ff;
    margin-right: 10px;
    font-size: 1rem;
}

.btn-whatsapp {
    display: inline-block;
    margin-top: 25px;
    background-color: #25d366;
    color: white;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.formulario-section {
    max-width: 800px;
    margin: 30px auto 60px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
}

.formulario-section form {
    display: flex;
    flex-direction: column;
}

.formulario-section input,
.formulario-section textarea {
    margin-bottom: 15px;
    padding: 12px;
    font-size: 1rem;
}

.formulario-section button {
    padding: 14px;
    background-color: #1e90ff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
/* ===============================
   Sección Provincia y Localidad
   =============================== */

/* Título de la sección */
.comunicacion-titulo {
    text-align: center;
    background-color: #ff6600; /* Naranja llamativo */
    color: #fff;
    padding: 15px 10px;
    border-radius: 8px;
    font-size: 22px;
    margin: 25px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-weight: bold;
}

/* Formulario centrado */
form {
    max-width: 500px;
    margin: 0 auto 30px auto;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Labels */
form label {
    display: block;
    margin: 12px 0 5px;
    font-weight: bold;
    color: #333;
    font-size: 16px;
}

/* Selects */
form select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    transition: border 0.3s, box-shadow 0.3s;
}

/* Cambio de borde al enfocar */
form select:focus {
    border-color: #ff6600;
    box-shadow: 0 0 5px rgba(255,102,0,0.5);
    outline: none;
}

/* Botón enviar (si agregas) */
form button[type="submit"] {
    background-color: #ff6600;
    color: #fff;
    padding: 12px;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

form button[type="submit"]:hover {
    background-color: #e55b00;
}

/* Campo trampa honeypot */
input[name="website"] {
    display: none;
}

.comunicacion-titulo {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.formulario-section label {
    display: block;
    margin-top: 15px;
    font-weight: 500;
    color: #444;
}

.formulario-section select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    background-color: #fff;
}

.formulario-section select:focus {
    outline: none;
    border-color: #25d366;
    box-shadow: 0 0 5px rgba(37, 211, 102, 0.4);
}

.formulario-section button {
    margin-top: 25px;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #25d366;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
}

.formulario-section button:hover {
    background-color: #1ebc5a;
}
