 pais {
            display: block;
            max-width: 900px;
            margin: 0 auto;
            padding: 50px;
            background: #ffffff;
            border: 1px solid #d5d5d5;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        /* Encabezado principal */
        pais::before {
            content: "REPÚBLICA DE " attr(nombre);
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: #1a252f;
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid #34495e;
            letter-spacing: 1px;
        }

        /* Información nacional */
        pais::after {
            content: "Moneda Oficial: " attr(moneda) " • Código Telefónico: +" attr(codigoTelefonico);
            display: block;
            text-align: center;
            font-size: 16px;
            color: #7f8c8d;
            margin-bottom: 40px;
            padding: 15px;
            background: #ecf0f1;
            font-style: italic;
        }

        /* Sección de idiomas */
        idioma {
            display: block;
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
        }

        idioma::before {
            content: "IDIOMAS OFICIALES";
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 25px;
            letter-spacing: 0.5px;
        }

        oficial {
            display: inline-block;
            font-size: 18px;
            color: #2c3e50;
            margin: 10px 20px;
            padding: 12px 20px;
            background: #3498db;
            color: white;
            font-weight: 600;
            text-transform: capitalize;
        }

        oficial::before {
            content: "Principal: ";
            font-weight: 400;
        }

        autoctono {
            display: inline-block;
            font-size: 18px;
            color: white;
            margin: 10px 20px;
            padding: 12px 20px;
            background: #27ae60;
            font-weight: 600;
            text-transform: capitalize;
        }

        autoctono::before {
            content: "Autóctono: ";
            font-weight: 400;
        }

        segundo {
            display: inline-block;
            font-size: 18px;
            color: white;
            margin: 10px 20px;
            padding: 12px 20px;
            background: #e74c3c;
            font-weight: 600;
            text-transform: capitalize;
        }

        segundo::before {
            content: "Secundario: ";
            font-weight: 400;
        }

        /* Departamentos */
        departamento {
            display: block;
            background: #fdfdfd;
            border: 1px solid #e0e0e0;
            margin: 35px 0;
            padding: 40px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        departamento::before {
            content: "DEPARTAMENTO " attr(nombre);
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #bdc3c7;
            text-align: center;
        }

        cabecera {
            display: block;
            font-size: 20px;
            color: #2c3e50;
            margin: 20px 0;
            padding: 15px 0;
            font-weight: 600;
            text-transform: capitalize;
        }

        cabecera::before {
            content: "Cabecera Municipal: ";
            color: #7f8c8d;
            font-weight: 400;
            font-size: 16px;
        }

        habitantes {
            display: block;
            font-size: 18px;
            color: #34495e;
            margin: 15px 0;
            padding: 12px 0;
        }

        habitantes::before {
            content: "Población: ";
            color: #7f8c8d;
            font-weight: 600;
        }

        habitantes::after {
            content: " habitantes";
            color: #7f8c8d;
            font-size: 16px;
        }

        altura {
            display: block;
            font-size: 18px;
            color: #34495e;
            margin: 15px 0;
            padding: 12px 0;
        }

        altura::before {
            content: "Altitud: ";
            color: #7f8c8d;
            font-weight: 600;
        }

        areaTerritorial {
            display: block;
            font-size: 18px;
            color: #34495e;
            margin: 15px 0;
            padding: 12px 0;
        }

        areaTerritorial::before {
            content: "Superficie: ";
            color: #7f8c8d;
            font-weight: 600;
        }

        areaTerritorial::after {
            content: " km²";
            color: #7f8c8d;
            font-size: 16px;
        }

        /* Numeración romana para departamentos */
        departamento[id="1"]::before {
            content: "I. DEPARTAMENTO " attr(nombre);
        }

        departamento[id="2"]::before {
            content: "II. DEPARTAMENTO " attr(nombre);
        }

        departamento[id="3"]::before {
            content: "III. DEPARTAMENTO " attr(nombre);
        }

        /* Efectos hover elegantes */
        departamento:hover {
            background: #f9f9f9;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }

        oficial:hover, autoctono:hover, segundo:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.2s ease;
        }

        /* Líneas separadoras clásicas */
        departamento + departamento {
            border-top: 2px solid #ecf0f1;
            margin-top: 40px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            pais {
                padding: 30px 25px;
                margin: 20px;
            }
            
            pais::before {
                font-size: 26px;
            }
            
            departamento {
                padding: 25px 20px;
            }
            
            departamento::before {
                font-size: 20px;
            }
            
            oficial, autoctono, segundo {
                display: block;
                margin: 10px 0;
                text-align: center;
            }
            
            cabecera {
                font-size: 18px;
            }
            
            habitantes, altura, areaTerritorial {
                font-size: 16px;
            }
        }