/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
}

/* Encabezado */
header {
    background-color: #64748b;
    color: white;
    padding: 1rem;
    text-align: center;
}

/* Contenedor */
.container {
    width: 95%;
    max-width: 900px;
    margin: 20px auto;
}

/* Área */
.area {
    margin-bottom: 15px;
}

.area-btn {
    width: 100%;
    padding: 15px;
    background-color: #bac5d4;
    color: #000;
    border: none;
    cursor: pointer;
    font-size: 18px;
    text-align: left;
    transition: 0.3s;
}

.area-btn:hover {
    background-color: #334155;
    color: #fff;
}

/* Trámites ocultos */
.tramites {
    display: none;
    background-color: white;
    border: 1px solid #fff;
}

.tramite-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #e5e5e5;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    transition: 0.3s;
	color: #334155;
	margin-bottom: 8px; /* ← Espacio entre botones */
}

.tramite-btn:hover {
    background-color: #64748b;
    color: #fff;
}

/* Visor PDF */
.visor-pdf {
    margin-top: 20px;
    display: none;
}

.visor-pdf iframe {
    width: 100%;
    height: 600px;
    border: 2px solid #334155;
}

/* Responsive */
@media (max-width: 768px) {
    .visor-pdf iframe {
        height: 400px;
    }
}

.area-btn {
    margin-bottom: 8px; /* Espacio debajo del botón */
}